-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Feb 04, 2026 at 12:59 PM
-- Server version: 11.4.9-MariaDB-cll-lve-log
-- PHP Version: 8.3.29

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

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

--
-- Table structure for table `wpr_commentmeta`
--

CREATE TABLE `wpr_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 `wpr_comments`
--

CREATE TABLE `wpr_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 `wpr_comments`
--

INSERT INTO `wpr_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2026-02-01 06:27:35', '2026-02-01 06:27:35', '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 `wpr_e_events`
--

CREATE TABLE `wpr_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 `wpr_e_notes`
--

CREATE TABLE `wpr_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 `wpr_e_notes_users_relations`
--

CREATE TABLE `wpr_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 `wpr_e_submissions`
--

CREATE TABLE `wpr_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 `wpr_e_submissions_actions_log`
--

CREATE TABLE `wpr_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 `wpr_e_submissions_values`
--

CREATE TABLE `wpr_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 `wpr_links`
--

CREATE TABLE `wpr_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 `wpr_litespeed_url`
--

CREATE TABLE `wpr_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 `wpr_litespeed_url_file`
--

CREATE TABLE `wpr_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 `wpr_options`
--

CREATE TABLE `wpr_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 `wpr_options`
--

INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:13:{i:1770228070;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:1770229655;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:1770229663;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:1770233255;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:1770235055;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:1770236855;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:1770272855;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:1770272863;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:1770272864;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:1770272899;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:1770532094;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:1770618455;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/royalhealth', 'on'),
(3, 'home', 'https://mrarif.me/royalhealth', 'on'),
(4, 'blogname', 'Royal Health', '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:109:{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: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=14&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:31:\"backup-backup/backup-backup.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s: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:82:\"/home/mrarqpph/public_html/royalhealth/wp-content/themes/astra-child/functions.php\";i:2;s:78:\"/home/mrarqpph/public_html/royalhealth/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', '60717', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:31:\"backup-backup/backup-backup.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '14', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '97', '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', '1785479255', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'initial_db_version', '60421', 'on'),
(102, 'wpr_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'on'),
(103, 'fresh_site', '0', 'off'),
(104, 'user_count', '1', 'off'),
(105, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(106, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(107, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:5:\"6.8.2\";s:5:\"files\";a:536:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}', 'on'),
(401, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1770235569;s:5:\"value\";s:2291:\"{\"new_version\":\"2.12.15\",\"stable_version\":\"2.12.15\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2025-11-27 10:06:14\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3MDQxNzM2OTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjJlNWUwNjY1NDhlMzkxM2IyOTc3OTVkMTI2ZTcxZWUwOmh0dHBzQC8vbXJhcmlmLm1lL3JveWFsaGVhbHRoOjA=\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3MDQxNzM2OTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjJlNWUwNjY1NDhlMzkxM2IyOTc3OTVkMTI2ZTcxZWUwOmh0dHBzQC8vbXJhcmlmLm1lL3JveWFsaGVhbHRoOjA=\",\"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');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(411, 'astra-settings', 'a:22:{s:18:\"theme-auto-version\";s:6:\"4.12.1\";s:22:\"is_theme_queue_running\";b:0;s:14:\"font-family-h1\";s:7:\"inherit\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:61;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:14:\"font-family-h2\";s:7:\"inherit\";s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:41;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"headings-font-family\";s:19:\"\'Rubik\', sans-serif\";s:21:\"headings-font-variant\";s:11:\"300,600,900\";s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";i:33;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: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-h5\";a:6:{s:7:\"desktop\";i:25;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:21;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:16:\"body-font-family\";s:25:\"\'AR One Sans\', sans-serif\";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:20:\"global-color-palette\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#c46101\";i:1;s:7:\"#ffc204\";i:2;s:7:\"#00245e\";i:3;s:7:\"#464647\";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-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-4)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-0)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";}', 'on'),
(412, 'allowed_astra_notices', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(413, 'astra_analytics_installed_time', '1769928959', 'off'),
(126, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1769928957;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'off'),
(125, 'recovery_keys', 'a:0:{}', 'off'),
(127, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"3199e2537fbad380fa221e097719f7c6\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:18:\"core/term-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(442, '_elementor_settings_update_time', '1769929090', 'auto'),
(443, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(444, 'elementor_disable_color_schemes', 'yes', 'auto'),
(445, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(446, 'elementor_allow_tracking_last_update', '1769929247', 'auto'),
(447, 'elementor_allow_tracking', 'yes', 'auto'),
(448, 'elementor_google_maps_api_key', '', 'auto'),
(449, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(450, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(451, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(452, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(453, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(454, 'elementor_pro_facebook_app_id', '', 'auto'),
(455, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(456, 'elementor_validate_api_data', '', 'auto'),
(457, 'elementor_pro_drip_api_token', '', 'auto'),
(458, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(459, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(460, 'elementor_pro_getresponse_api_key', '', 'auto'),
(461, 'elementor_pro_convertkit_api_key', '', 'auto'),
(462, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(463, 'elementor_typekit-kit-id', '', 'auto'),
(464, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(465, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(466, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(467, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(468, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(469, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(470, 'elementor_editor_break_lines', '', 'auto'),
(471, 'elementor_unfiltered_files_upload', '1', 'auto'),
(472, 'elementor_google_font', '1', 'auto'),
(473, 'elementor_form-submissions', '', 'auto'),
(474, 'elementor_load_fa4_shim', '', 'auto'),
(475, 'elementor_meta_generator_tag', '', 'auto'),
(476, 'elementor_css_print_method', 'external', 'auto'),
(477, 'elementor_optimized_image_loading', '1', 'auto'),
(478, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(479, 'elementor_lazy_load_background_images', '1', 'auto'),
(480, 'elementor_local_google_fonts', '0', 'auto'),
(481, 'elementor_element_cache_ttl', '24', 'auto'),
(482, 'elementor_experiment-container', 'default', 'auto'),
(483, 'elementor_experiment-nested-elements', 'default', 'auto'),
(484, 'elementor_experiment-mega-menu', 'default', 'auto'),
(485, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(486, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(487, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(488, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(499, 'e_editor_counter', '35', 'auto'),
(500, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1770061069;s:5:\"value\";s:12018:\"[{\"id\":\"one-launch\",\"title\":\"Introducing Elementor One\",\"description\":\"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/one-launch.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Explore Elementor One\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/launch-whats-new\"},{\"id\":\"atomic-tabs-3.34\",\"title\":\"Atomic Tabs\",\"description\":\"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"interactions-3.34\",\"title\":\"Entrance Interactions\",\"description\":\"Add subtle, performance\\u2011minded Fade, Scale or Slide effects to your elements from the new Interaction panel.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/interactions-3.34.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-custom-css\\/\"},{\"id\":\"blend-mode-3.33\",\"title\":\"Blend Mode\",\"description\":\"Layer and blend visuals to create depth, contrast, and cinematic design effects.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-blend.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"transform-3.32\",\"title\":\"Design with depth using Transform\",\"description\":\"Move, scale, rotate, and skew any element with ease. Transform controls add depth, stacked effects, and seamless States for hover, focus, and active micro-interactions.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transform.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-size-variable\\/\"},{\"id\":\"transitions-3.32\",\"title\":\"Smooth interactions with Transitions\",\"description\":\"Bring polish to every interaction. Transitions let you animate style changes smoothly between states. In Pro, layer multiple transitions by property for refined, modern micro-animations.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transition.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-3.31\",\"title\":\"Scalable design with Variables\",\"description\":\"Define once, reuse everywhere. Color & Font Variables help you build consistent, scalable design systems that update globally and are perfect for large sites or teams.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-variables.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"filters-3.31\",\"title\":\"Visual effects with Filters and Backdrop Filters\",\"description\":\"Apply multiple Filters like blur, brightness, and contrast. Stack, reorder, and preview in real time without writing a line of code.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-filters.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"classes-3.31\",\"title\":\"Smarter Class Manager tools\",\"description\":\"Quickly locate and manage Global Classes with usage counts, a new locator panel, and full class search. Perfect for scaling and refactoring complex design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-classes.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-attributes\\/\"},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.30-cloud-websites\\/\"},{\"id\":\"ally-notification\",\"title\":\"Just released! Ally - a new plugin for web accessibility & usability\",\"description\":\"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get it free\",\"ctaLink\":\"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(491, 'elementor_log', 'a:14:{s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-01 06:58:22\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:30:\"r.startsWith is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 06:58:22\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769929102\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:92:\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/js/admin.min.js?ver=3.34.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"45739\";}s:7:\"\0*\0file\";s:92:\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/js/admin.min.js?ver=3.34.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"45739\";}s:32:\"8b940f8cfd06ce2af827f77dc96fed30\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-01 07:03:06\";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-02-01 07:03:06\";}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:105:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:105:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;}s:32:\"f99eb5ed417492ef28b6b3000203a316\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-01 07:05:34\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:61:\"Cannot read properties of undefined (reading &#039;get&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 07:05:34\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769929534\";s:7:\"message\";s:51:\"Cannot read properties of undefined (reading \'get\')\";s:3:\"url\";s:93:\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"22591\";}s:7:\"\0*\0file\";s:93:\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"22591\";}s:32:\"2effa47d6c75995e8e4ecce136aeb3b8\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-01 07:56:59\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1762:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module-&gt;is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(341): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/royalhealth/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/royalhealth/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/royalhealth/wp-config.php(104): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/royalhealth/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/royalhealth/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/royalhealth/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#13 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:11;s:14:\"\0*\0times_dates\";a:11:{i:0;s:19:\"2026-02-01 07:56:59\";i:1;s:19:\"2026-02-01 07:56:59\";i:2;s:19:\"2026-02-01 07:56:59\";i:3;s:19:\"2026-02-01 08:08:19\";i:4;s:19:\"2026-02-01 08:08:19\";i:5;s:19:\"2026-02-01 08:08:19\";i:6;s:19:\"2026-02-01 10:22:38\";i:7;s:19:\"2026-02-01 10:27:06\";i:8;s:19:\"2026-02-01 10:27:06\";i:9;s:19:\"2026-02-01 10:27:06\";i:10;s:19:\"2026-02-01 10:36:34\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1701:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(341): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/royalhealth/wp-includes/plugin.php(522): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/royalhealth/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/royalhealth/wp-config.php(104): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/royalhealth/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/royalhealth/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/royalhealth/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:100:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:207;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:100:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:207;}s:32:\"862b354848f8cbd976eeac5356ce0394\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:41:30\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:60:\"Cannot read properties of null (reading &#039;dataset&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:41:30\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769949690\";s:7:\"message\";s:50:\"Cannot read properties of null (reading \'dataset\')\";s:3:\"url\";s:103:\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/js/9f88a0d716a691c2448a.bundle.min.js\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:5:\"10410\";}s:7:\"\0*\0file\";s:103:\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/js/9f88a0d716a691c2448a.bundle.min.js\";s:7:\"\0*\0line\";s:1:\"1\";s:9:\"\0*\0column\";s:5:\"10410\";}s:32:\"bb8a5c6e35e78d60cbe0f1c231348951\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:09\";}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:\"196b984a9a94cb133f09ff7e79886258\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:09\";}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:\"e66386f86823560019c786f5396c1219\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:09\";}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:\"5bb19895992a715b7793548631acdcf9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3b48d0a0cad44845e6b397b0f8c676cb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"28896d5567c0b3bbf856878037c4194c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:6:\"3.34.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:09\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:6:\"3.34.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9abaf78da0a21823de5dfe2acbf34dca\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-01 12:43: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:6:\"3.25.4\";s:2:\"to\";s:6:\"3.34.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-01 12:43:10\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.25.4\";s:2:\"to\";s:6:\"3.34.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"62a008db21ceb2eae4447678b545942b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-01 13:05:14\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:12;s:14:\"\0*\0times_dates\";a:12:{i:0;s:19:\"2026-02-01 13:05:14\";i:1;s:19:\"2026-02-01 13:08:56\";i:2;s:19:\"2026-02-01 13:23:20\";i:3;s:19:\"2026-02-01 13:37:17\";i:4;s:19:\"2026-02-02 06:01:55\";i:5;s:19:\"2026-02-02 06:06:42\";i:6;s:19:\"2026-02-02 06:13:16\";i:7;s:19:\"2026-02-02 06:21:30\";i:8;s:19:\"2026-02-02 06:39:00\";i:9;s:19:\"2026-02-02 06:52:26\";i:10;s:19:\"2026-02-02 18:37:54\";i:11;s:19:\"2026-02-02 18:52:31\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:4:\"file\";s:100:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:230;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:100:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:230;}s:32:\"c009abaa58ba34d8486df3427bb25556\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-02 06:07:05\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1762:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module-&gt;is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(341): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/royalhealth/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/royalhealth/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/royalhealth/wp-config.php(106): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/royalhealth/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/royalhealth/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/royalhealth/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#13 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:10;s:14:\"\0*\0times_dates\";a:10:{i:0;s:19:\"2026-02-02 06:07:05\";i:1;s:19:\"2026-02-02 06:07:05\";i:2;s:19:\"2026-02-02 06:07:22\";i:3;s:19:\"2026-02-02 06:07:22\";i:4;s:19:\"2026-02-02 18:54:19\";i:5;s:19:\"2026-02-02 18:54:19\";i:6;s:19:\"2026-02-02 18:54:20\";i:7;s:19:\"2026-02-02 18:54:37\";i:8;s:19:\"2026-02-02 18:54:37\";i:9;s:19:\"2026-02-02 18:54:37\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1701:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(341): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/royalhealth/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/royalhealth/wp-includes/plugin.php(522): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/royalhealth/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/royalhealth/wp-config.php(106): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/royalhealth/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/royalhealth/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/royalhealth/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:100:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:207;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:100:\"/home/mrarqpph/public_html/royalhealth/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:207;}}', 'off'),
(1004, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(1258, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(1259, 'bmi_sk_keepalive', 'WIHHclA9pk0Jyy9UBgzTcjr0o2pCsLJY', 'auto'),
(1260, 'bmi_cron_new_domain_done', '1', 'auto'),
(1261, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/royalhealth/wp-content/backup-migration-vLShnqMVOQ', 'auto'),
(133, '_site_transient_timeout_browser_8e253f85246590342756399a57054cb8', '1770532064', 'off'),
(134, '_site_transient_browser_8e253f85246590342756399a57054cb8', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"144.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'),
(135, '_site_transient_timeout_php_check_9ab7d1d0aab5d0d9977e61657de2d018', '1770532064', 'off'),
(136, '_site_transient_php_check_9ab7d1d0aab5d0d9977e61657de2d018', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(1223, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1770225661;s:7:\"checked\";a:5:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.12.1\";s:16:\"twentytwentyfive\";s:3:\"1.3\";s:16:\"twentytwentyfour\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:2:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:2:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.12.1\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.12.1.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'),
(1180, '_transient_is_multi_author', '0', 'on'),
(1179, 'litespeed.optimize.timestamp_purge_css', '1770225669', 'auto'),
(1230, '_transient_timeout_elementor_remote_info_api_data_3.34.4', '1770267995', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1231, '_transient_elementor_remote_info_api_data_3.34.4', 'a:4:{s:9:\"timestamp\";s:10:\"1770223072\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}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:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.9.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}', 'off'),
(1232, '_site_transient_timeout_community-events-b3ce4eb76528d3b8101d113ea6f65d4b', '1770268011', 'off'),
(1233, '_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:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:31:\"Women WordPress Day Sylhet 2026\";s:3:\"url\";s:51:\"https://events.wordpress.org/sylhet/2026/WomensDay/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-02-08 00:00:00\";s:8:\"end_date\";s:19:\"2026-02-08 00:00:00\";s:20:\"start_unix_timestamp\";i:1770487200;s:18:\"end_unix_timestamp\";i:1770487200;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Sylhet, Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:24.8997921;s:9:\"longitude\";d:91.8565306;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:30:\"Women WordPress Day Dhaka 2026\";s:3:\"url\";s:50:\"https://events.wordpress.org/dhaka/2026/WomensDay/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-02-08 00:00:00\";s:8:\"end_date\";s:19:\"2026-02-08 00:00:00\";s:20:\"start_unix_timestamp\";i:1770487200;s:18:\"end_unix_timestamp\";i:1770487200;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Dhaka, Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:23.7929307;s:9:\"longitude\";d:90.3743806;}}}}', 'off'),
(1234, '_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1770268011', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1235, '_site_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Feb 2026 20:58:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=7.0-alpha-61588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.9.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2026/02/wordpress-6-9-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Feb 2026 18:07:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19862\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"WordPress 6.9.1 is now available! This minor release includes fixes for 49 bugs throughout Core and the Block Editor, addressing issues affecting multiple areas of WordPress including the block editor, mail, and classic themes. For a full list of bug fixes, please refer to the release candidate announcement. WordPress 6.9.1 is a short-cycle maintenance release. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9409:\"\n<p class=\"wp-block-paragraph\"><strong>WordPress 6.9.1 is now available!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">This minor release includes fixes for 49 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&amp;milestone=6.9.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">throughout Core</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/74806\">the Block Editor</a>, addressing issues affecting multiple areas of WordPress including the block editor, mail, and classic themes. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2026/01/30/wordpress-6-9-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9.1 is a short-cycle maintenance release. The next major version of WordPress will be 7.0; it is scheduled for release on 9 April 2026 at <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.1.zip\">download WordPress 6.9.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-9-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> and <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/acmoifr\">acmoifr</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/oztaser\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/albigdd\">Alexander Bigga</a>, <a href=\"https://profiles.wordpress.org/amanandhishoe\">amanandhishoe</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/brumack\">brumack</a>, <a href=\"https://profiles.wordpress.org/darerodz\">David Arenas</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/raftaar1191\">Deepak Gupta</a>, <a href=\"https://profiles.wordpress.org/deepakprajapati\">Deepak Prajapati</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/digitalblanket\">digitalblanket</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">Fabian Kaegy</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/jdeep\">Jaydeep Das</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/maverick3x6\">Jeff Golenski</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jhtjards\">jhtjards</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/karthickmurugan\">Karthick</a>, <a href=\"https://profiles.wordpress.org/solankisoftware\">Kirtikumar Solanki</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/luisherranz\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/madhavishah01\">Madhavi Shah</a>, <a href=\"https://profiles.wordpress.org/sirlouen\">Manuel Camargo</a>, <a href=\"https://profiles.wordpress.org/jillro\">Maud Royer</a>, <a href=\"https://profiles.wordpress.org/mehrazmorshed\">Mehraz Morshed</a>, <a href=\"https://profiles.wordpress.org/monarobase\">Monarobase</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/muryam\">Muryam Sultana</a>, <a href=\"https://profiles.wordpress.org/mydesign78\">mydesign78</a>, <a href=\"https://profiles.wordpress.org/narenin\">Narendra Sishodiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/oglekler\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/gabertronic\">Ophelia Rose</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/vybiral\">Pavel Vybíral</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pmbs\">pmbs</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/r1k0\">r1k0</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/ricjcs\">Ricardo S.</a>, <a href=\"https://profiles.wordpress.org/rollybueno\">Rolly Bueno</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sajib1223\">Shazzad Hossain Khan</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/soyebsalar01\">Soyeb Salar</a>, <a href=\"https://profiles.wordpress.org/spielers\">spielers</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/studiomondiale\">studio_m</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">Tobias Bäthge</a>, <a href=\"https://profiles.wordpress.org/shimotomoki\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/umeshsinghin\">Umesh Singh</a>, <a href=\"https://profiles.wordpress.org/twvania\">Vania</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/wolf45\">wolf45</a>, <a href=\"https://profiles.wordpress.org/zoe20\">zoe20</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/presskopp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>presskopp</a><em> for proofreading.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"New AI Agent Skill for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2026/01/new-ai-agent-skill/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jan 2026 17:13:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19798\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"Faster Way For AI Agents To Test AI code agents are getting better at writing WordPress plugins and themes, but testing can still be the slow part. WordPress contributor Brandon Payton has published wp-playground, a new AI agent skill designed to run WordPress via the Playground CLI, giving agents a fast, repeatable way to run [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5989:\"\n<h2 class=\"wp-block-heading\">Faster Way For AI Agents To Test</h2>\n\n\n\n<p class=\"wp-block-paragraph\">AI code agents are getting better at writing WordPress plugins and themes, but testing can still be the slow part. WordPress contributor <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> has published <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">wp-playground</mark>, a new AI agent skill designed to run WordPress via the Playground CLI<strong>, </strong>giving agents a fast, repeatable way to run WordPress and verify their work as they iterate.<br></p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">&#8220;AI agents work better when they have a clear feedback loop. That’s why I made the wp-playground skill. It gives agents an easy way to test WordPress code and makes building and experimenting with WordPress a lot more accessible.&#8221;</p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8212; Brandon Payton, WordPress Contributor</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">What the Playground skill does</h2>\n\n\n\n<p class=\"wp-block-paragraph\">When launched, the skill starts WordPress and detects where the current code should live inside a WordPress install. For example, it can mount a plugin into <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">wp-content/plugins</mark> or a theme into <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">wp-content/themes</mark> by recognizing common file signatures (such as plugin headers or a theme’s <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">style.css</mark>). This helps agents move from “generated code” to “running site” with fewer manual steps.<br></p>\n\n\n\n<div class=\"wp-block-cover wp-elements-1323ebcb3edbff2bde6000899ed39b56\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-80 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-container-core-cover-is-layout-063a8677 wp-block-cover-is-layout-constrained\">\n<p class=\"has-text-align-center has-off-white-2-color has-text-color has-link-color has-eb-garamond-font-family has-huge-font-size wp-elements-11d5ec75ba50354c745eeb5f70fa912c wp-block-paragraph\" style=\"margin-top:0;margin-bottom:0\"><strong>Install and try it today.</strong></p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">Find more information on this GitHub link:</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-blue-1-background-color has-background has-eb-garamond-font-family has-large-font-size has-custom-font-size wp-element-button\" href=\"https://github.com/WordPress/agent-skills/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordPress AI Agent Skills</strong></a></div>\n</div>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Early results and testing workflow</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In testing, agents were able to start WordPress, build playful plugins, and validate behavior in a tight feedback loop. Once Playground was running, the agent alternated between tools such as <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">curl</mark> and Playwright to interact with WordPress, verify results, apply fixes when needed, and then re-verify with Playground.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Faster startup and smoother iteration</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Helper scripts handle startup and shutdown, so an agent doesn’t waste time guessing when WordPress is ready. Using helper scripts reduced the “ready to test” moment from roughly a minute to a few seconds on the author’s machine. The Playground CLI can also log in automatically for easier <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">WP-Admin</mark> access during testing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Install and try it now</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For those who want to try it in Claude Code, Codex, or another AI agent, installation requires <a href=\"https://nodejs.org/\">Node.js</a> and npm and looks like this:</p>\n\n\n\n<p class=\"has-cyan-bluish-gray-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-elements-2a77bf7f3e8595318d429b5c7a3f6dd5 wp-block-paragraph\" style=\"padding-top:10px;padding-right:var(--wp--preset--spacing--10);padding-bottom:10px;padding-left:var(--wp--preset--spacing--10)\"># Run this in a project directory to install the skills for that project&nbsp;<br>npx openskills install WordPress/agent-skills<br><br># Make skills available to non-Claude agents<br>npx openskills sync</p>\n\n\n\n<h2 class=\"wp-block-heading\">A new repo for WordPress agent skills</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release also comes with a new home for this kind of work: <br><a href=\"https://github.com/WordPress/agent-skills\">https://github.com/WordPress/agent-skills</a>.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s an early step in exploring how AI agents can collaborate with WordPress tooling, and contributions from the community are welcome. Future additions being explored include persistent Playground sites based on the current directory, running commands against an existing Playground instance (including <mark style=\"background-color:#eff2ff\" class=\"has-inline-color has-dark-strokes-grey-color\">wp-cli</mark>), and Blueprint generation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19798\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Be Part of WordCamp Asia 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2026/01/wordcamp-asia-2026/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2026 12:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19738\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"WordCamp Asia is back in 2026, this time in Mumbai, India, and it’s building on a year that showed just how ambitious and connected the WordPress community has become. Now is the time to get involved. Get your ticket, explore sponsorship opportunities, and help spread the word. In 2025, more than 1,400 attendees from 71 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:36121:\"\n<p class=\"wp-block-paragraph\">WordCamp Asia is back in 2026, this time in Mumbai, India, and it’s building on a year that showed just how ambitious and connected the WordPress community has become. Now is the time to get involved. Get your ticket, explore sponsorship opportunities, and help spread the word.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-c124d1c4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/event-pass/\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(42,5,123) 100%)\" target=\"_blank\" rel=\"noreferrer noopener\">Get Your Event Pass</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/call-for-sponsors/\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(42,5,123) 100%)\" target=\"_blank\" rel=\"noreferrer noopener\">Become a Sponsor</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(42,5,123) 100%)\" target=\"_blank\" rel=\"noreferrer noopener\">About WordCamp Asia</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">In 2025, more than 1,400 attendees from 71 countries gathered in person, with nearly 15,000 more joining online for <a href=\"https://wordpress.org/news/2025/02/shaping-tomorrow-at-wordcamp-asia-2025/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Asia 2025</a>. With notable guests like WordPress <span style=\"margin: 0px;padding: 0px\">Co-founder&nbsp;<a href=\"https://profiles.wordpress.org/matt/\" target=\"_blank\" rel=\"noreferrer noopener\">Matt Mullenweg</a>&nbsp;and Gutenberg Lead Architect&nbsp;<a href=\"https://profiles.wordpress.org/matveb/\" target=\"_blank\" rel=\"noreferrer noopener\">Matías Ventura</a>, and</span> a diverse lineup of speakers and panelists from across the ecosystem, WordCamp Asia 2025 brought together a community actively shaping the future of the open web.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">It&#8217;s the people. It&#8217;s the friendships and the stories.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Matt Mullenweg, WordPress Cofounder</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp isn’t just about sessions and schedules. It’s about connection. It’s about learning directly from people who are building, scaling, and sustaining WordPress in the real world. It’s about sharing ideas, debating the future of the open web, and leaving with renewed energy for the work ahead. And in 2026, that spirit returns stronger than ever.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-border-color has-darker-grey-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-color:#1c2024;border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8549d&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8549d\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18537\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18537\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a85d90&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a85d90\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18527\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18527\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a86644&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a86644\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18530\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18530\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a86f61&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a86f61\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18616\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18616\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a87833&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a87833\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18615\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305.jpg?resize=1024%2C684&#038;ssl=1\" alt=\"\" class=\"wp-image-18615\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305-scaled.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305-scaled.jpg?resize=768%2C513&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305-scaled.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305-scaled.jpg?resize=2048%2C1367&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8815e&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8815e\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18536\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18536\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Tickets for WordCamp Asia 2026 are on sale now, and this is the moment to secure your spot. WordCamps are intentionally priced to remain accessible, and early ticket sales help organizers plan an inclusive, high-quality experience for everyone.</p>\n\n\n\n<div class=\"wp-block-cover wp-elements-0b95616698be07100358c612d6a7c795\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"455\" class=\"wp-block-cover__image-background wp-image-19746 size-large\" alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/wca-hero-purple.webp?resize=1024%2C455&#038;ssl=1\" data-object-fit=\"cover\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/wca-hero-purple.webp?resize=1024%2C455&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/01/wca-hero-purple.webp?resize=300%2C133&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/01/wca-hero-purple.webp?resize=768%2C341&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/01/wca-hero-purple.webp?w=1440&amp;ssl=1 1440w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-container-core-cover-is-layout-063a8677 wp-block-cover-is-layout-constrained\">\n<p class=\"has-text-align-center has-luminous-vivid-amber-color has-text-color has-link-color has-eb-garamond-font-family has-huge-font-size wp-elements-fc6f7f5274402af690db6c3dfeb817bc wp-block-paragraph\" style=\"margin-top:0;margin-bottom:0\"><strong>Join 3,000+ Web Professionals</strong></p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">April 9 – 11, 2026 | Jio World Convention Centre, Mumbai, India</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background has-eb-garamond-font-family has-large-font-size has-custom-font-size wp-element-button\" href=\"https://asia.wordcamp.org/2026/event-pass/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Get Your Event Pass</strong></a></div>\n</div>\n</div></div>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia is also made possible by the organizations that step up to support it. Sponsorship plays a critical role in keeping the event accessible, supporting contributors and volunteers, and ensuring the experience reflects the values of the WordPress project. For sponsors, WordCamp Asia 2026 offers a rare opportunity to connect with a highly engaged, global audience in a setting built on trust, collaboration, and shared purpose.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Sponsorship packages are designed to support a wide range of organizations, from local companies to global businesses building products and services on WordPress. Beyond visibility, sponsors become part of the story—helping sustain the ecosystem and invest directly in the community that makes WordPress possible.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-b8b9d790 wp-block-group-is-layout-constrained\" style=\"background:linear-gradient(135deg,rgb(42,5,123) 0%,rgb(124,78,224) 100%);padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<div class=\"wp-block-group alignfull is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-23441af8 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-embed aligncenter is-type-rich is-provider-canva wp-block-embed-canva\" style=\"margin-right:var(--wp--preset--spacing--edge-space);margin-left:var(--wp--preset--spacing--edge-space)\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"OFFICIAL: WCAsia 2026 Sponsorship Prospectus\" src=\"https://www.canva.com/design/DAG5LHsUR7o/b-nFPoZDgxpV2tlN-tbAew/view?embed&amp;meta\" height=\"281\" width=\"500\" style=\"border: none; border-radius: 8px; width: 500px; height: 281px;\" allowfullscreen=\"allowfullscreen\" allow=\"fullscreen\"></iframe>\n</div></figure>\n</div>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color wp-elements-ba159f72435edac28651a9149c455a8c wp-block-paragraph\">If your company is interested in becoming a sponsor or you would like to know more, please reach out.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background has-eb-garamond-font-family has-large-font-size has-custom-font-size wp-element-button\" href=\"https://asia.wordcamp.org/2026/call-for-sponsors/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Become a Sponsor</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">At every level, WordCamp Asia is powered by people. Organizers, volunteers, speakers, sponsors, and attendees all contribute to an experience that reflects WordPress’s shared values of openness and collaboration. It’s a place where new voices are welcomed, long-time contributors reconnect, and ideas move from conversation to action.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-border-color has-darker-grey-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-color:#1c2024;border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a89e1e&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a89e1e\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18533\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18533\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8a7a1&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8a7a1\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18547\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388.jpg?resize=1024%2C684&#038;ssl=1\" alt=\"\" class=\"wp-image-18547\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388-scaled.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388-scaled.jpg?resize=768%2C513&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388-scaled.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388-scaled.jpg?resize=2048%2C1367&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8b09d&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8b09d\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18523\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18523\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8b9c4&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8b9c4\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18545\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18545\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8c2e9&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8c2e9\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18543\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18543\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69837a5a8cbd5&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69837a5a8cbd5\" class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"18546\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709.jpg?resize=1024%2C684&#038;ssl=1\" alt=\"\" class=\"wp-image-18546\" style=\"border-radius:2px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709-scaled.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709-scaled.jpg?resize=768%2C513&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709-scaled.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709-scaled.jpg?resize=2048%2C1367&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia 2026 is more than an event—it’s a moment to come together, reflect on where we are, and help shape what comes next. Whether you’re attending for the first time, returning for another year, or supporting the event as a sponsor, your involvement helps strengthen the WordPress ecosystem and the global community behind it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ll see you in Mumbai.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"A New Home for WordPress Education Programs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2026/01/wordpress-education-programs-new-home/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jan 2026 17:14:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19636\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"Over the past few weeks, a new space has taken shape on WordPress.org for students who want to learn, build, and contribute. WordPress Education programs bring together initiatives that help students enter the WordPress ecosystem through clear, accessible entry points that lead to real-world practice. With hands-on initiatives and supportive communities, participants can grow new [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17688:\"\n<p class=\"wp-block-paragraph\">Over the past few weeks, a new space has taken shape on WordPress.org for students who want to learn, build, and contribute. <a href=\"https://wordpress.org/education/\">WordPress Education programs</a> bring together initiatives that help students enter the WordPress ecosystem through clear, accessible entry points that lead to real-world practice.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With hands-on initiatives and supportive communities, participants can grow new skills and take their first steps as contributors. Across campuses and communities worldwide, learners publish real projects, build practical experience, and gain confidence as part of open source creation.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19638\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\"><em><a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/8467ac53c5/\">photo</a> by <a href=\"https://wordpress.org/photos/author/whyviru/\">Virendra Kumar Yadav</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</em></figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">A clearer path into the WordPress ecosystem</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Education is designed to help students turn knowledge into practice, discover their strengths, and understand how their contributions can make a real impact through three core programs: WordPress Campus Connect, WordPress Credits, and WordPress Student Clubs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Through hands-on campus events, such as WordPress Campus Connect, on-campus groups like WordPress Student Clubs, and a practice-based program called WordPress Credits, participants can gain practical experience, publish real-world projects, and build confidence as contributors to a global culture of open-source creation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">At its heart, these WordPress education programs are about three simple ideas:</p>\n\n\n\n<p class=\"wp-block-paragraph\">Learn. Build. Connect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This update brings WordPress education programs together in one place, with an easy way to explore initiatives, understand how they work, and take the next step.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You will find:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A home for WordPress Education programs and updates</li>\n\n\n\n<li>Clear “how to get involved” paths for students, educators, mentors, organizers, and sponsors</li>\n\n\n\n<li>Stories, highlights, and examples of real projects created through the programs</li>\n\n\n\n<li>Links to the Education Handbook for program guidelines and resources</li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-d1b48064 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Want to learn more about WordPress education opportunities?</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/education/\">Visit The Portal</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"><em><em>You can also view more information from the <a href=\"https://make.wordpress.org/community/handbook/education/\">WordPress Community Education Programs Handbook</a>. Learn how this serves as a central guide and resource for all community-driven educational initiatives.</em></em></p>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h4 class=\"wp-block-heading has-text-align-left\">WordPress <br>Campus Connect</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Campus Connect is a growing global learning initiative that brings hands-on WordPress learning directly to the students on their campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The organizers can come from within educational institutions or from the local communities to help deliver WordPress programming and create the future stewards of WordPress.<br><br>Learn more: <a href=\"https://wordpress.org/education/campus-connect/\">https://wordpress.org/education/campus-connect/</a><br></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h4 class=\"wp-block-heading has-text-align-left\">WordPress <br>Credits</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Credits is a contribution-based program by the WordPress Foundation that connects higher education students with the global WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Educational institutions partner with the WordPress Foundation to offer students credits toward their degrees for contributing 150 hours to the WordPress project.<br><br>Learn more: <a href=\"https://wordpress.org/education/credits/\">https://wordpress.org/education/credits/</a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h4 class=\"wp-block-heading has-text-align-left\">WordPress <br>Student Clubs</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Student Clubs empower students to build on-campus WordPress communities that keep learning going throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the spirit of our local community meetups, these groups operate as on-campus equivalents, keeping students engaged and connected with their local WordPress communities.<br><br>Learn more: <a href=\"https://wordpress.org/education/student-clubs/\">https://wordpress.org/education/student-clubs/</a></p>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Support This Growing Movement</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Help spread the word, and let friends, students, and others know how they can contribute to this growing effort, including a widely expanding translation effort. WordPress Education has already been translated into 10 new languages. WordPress Education is powered by people who believe in open learning and the power of collaboration.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter has-darker-grey-background-color has-background is-style-rectangular\" style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><div class=\"\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:49.76204%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/alumnos-tabajando-Campus-Connect-Catarroja-scaled-1.webp?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/alumnos-tabajando-Campus-Connect-Catarroja-scaled-1.webp?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/alumnos-tabajando-Campus-Connect-Catarroja-scaled-1.webp?strip=info&#038;w=1024&#038;ssl=1 1024w\" alt=\"\" data-height=\"683\" data-id=\"19641\" data-link=\"https://wordpress.org/news/?attachment_id=19641\" data-url=\"https://wordpress.org/news/files/2026/01/alumnos-tabajando-Campus-Connect-Catarroja-scaled-1.webp\" data-width=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/alumnos-tabajando-Campus-Connect-Catarroja-scaled-1.webp?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-7-scaled-1.webp?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-7-scaled-1.webp?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-7-scaled-1.webp?strip=info&#038;w=1024&#038;ssl=1 1024w\" alt=\"\" data-height=\"683\" data-id=\"19643\" data-link=\"https://wordpress.org/news/?attachment_id=19643\" data-url=\"https://wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-7-scaled-1.webp\" data-width=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-7-scaled-1.webp?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:50.23796%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25-3-scaled-1-768x1024.webp?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25-3-scaled-1-768x1024.webp?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25-3-scaled-1-768x1024.webp?strip=info&#038;w=1152&#038;ssl=1 1152w\" alt=\"\" data-height=\"1536\" data-id=\"19646\" data-link=\"https://wordpress.org/news/?attachment_id=19646\" data-url=\"https://wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25-3-scaled-1-768x1024.webp\" data-width=\"1152\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25-3-scaled-1-768x1024.webp?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:46.88139%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?strip=info&#038;w=1800&#038;ssl=1 1800w,https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?strip=info&#038;w=2000&#038;ssl=1 2000w\" alt=\"\" data-height=\"1440\" data-id=\"19650\" data-link=\"https://wordpress.org/news/?attachment_id=19650\" data-url=\"https://wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg\" data-width=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:53.11861%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25.webp?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25.webp?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25.webp?strip=info&#038;w=1024&#038;ssl=1 1024w\" alt=\"\" data-height=\"508\" data-id=\"19645\" data-link=\"https://wordpress.org/news/?attachment_id=19645\" data-url=\"https://wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25.webp\" data-width=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25.webp?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:65.98093%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Patri-alumnos-Campus-Connect-Catarroja-25-scaled-1.webp?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/Patri-alumnos-Campus-Connect-Catarroja-25-scaled-1.webp?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/Patri-alumnos-Campus-Connect-Catarroja-25-scaled-1.webp?strip=info&#038;w=1024&#038;ssl=1 1024w\" alt=\"\" data-height=\"683\" data-id=\"19644\" data-link=\"https://wordpress.org/news/?attachment_id=19644\" data-url=\"https://wordpress.org/news/files/2026/01/Patri-alumnos-Campus-Connect-Catarroja-25-scaled-1.webp\" data-width=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Patri-alumnos-Campus-Connect-Catarroja-25-scaled-1.webp?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:34.01907%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?strip=info&#038;w=1800&#038;ssl=1 1800w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?strip=info&#038;w=2000&#038;ssl=1 2000w\" alt=\"\" data-height=\"1368\" data-id=\"19647\" data-link=\"https://wordpress.org/news/?attachment_id=19647\" data-url=\"https://wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg\" data-width=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?strip=info&#038;w=1800&#038;ssl=1 1800w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?strip=info&#038;w=2000&#038;ssl=1 2000w\" alt=\"\" data-height=\"1920\" data-id=\"19649\" data-link=\"https://wordpress.org/news/?attachment_id=19649\" data-url=\"https://wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg\" data-width=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:100.00000%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?strip=info&#038;w=1800&#038;ssl=1 1800w,https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?strip=info&#038;w=2000&#038;ssl=1 2000w\" alt=\"\" data-height=\"1707\" data-id=\"19648\" data-link=\"https://wordpress.org/news/?attachment_id=19648\" data-url=\"https://wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg\" data-width=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress Playground Brings Speed, Stability, and Momentum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2026/01/wordpress-playground-speed-stability-momentum/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Jan 2026 16:53:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19673\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:399:\"WordPress Playground had a busy year in 2025, with updates that make it more capable for day-to-day development, plugin previews, and learning environments. The project’s latest year-in-review highlights progress across performance, compatibility, database support, and tooling, expanding what can be done in a WordPress environment that runs in the browser and through the command line. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12643:\"\n<p class=\"wp-block-paragraph\">WordPress Playground had a busy year in 2025, with updates that make it more capable for day-to-day development, plugin previews, and learning environments. The project’s latest year-in-review highlights progress across performance, compatibility, database support, and tooling, expanding what can be done in a WordPress environment that runs in the browser and through the command line.</p>\n\n\n\n<p class=\"wp-block-paragraph\">From faster load times to broader plugin support, the throughline is clear: Playground is moving beyond quick demos and into workflows that help developers and educators test, iterate, and share WordPress experiences more easily.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-2bb63ab0 wp-block-buttons-is-layout-flex\" style=\"border-style:none;border-width:0px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-blue-5-background-color has-background wp-element-button\" href=\"https://wordpress.org/playground/\" style=\"border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px\">Try Playground Now</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"551\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm.png?resize=1024%2C551&#038;ssl=1\" alt=\"\" class=\"wp-image-19689\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm-scaled.png?resize=1024%2C551&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm-scaled.png?resize=300%2C161&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm-scaled.png?resize=768%2C413&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm-scaled.png?resize=1536%2C826&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm-scaled.png?resize=2048%2C1102&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-constrained wp-container-core-group-is-layout-083c866d wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"wp-block-paragraph\"><strong>Key Takeaways</strong></p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Plugin previews are more reliable: </strong>99% of the top 1,000 plugins can be installed and activated successfully, making demos and evaluations more trustworthy.</li>\n\n\n\n<li><strong>Everything is faster:</strong> A performance upgrade reduced average response time by 42%, and further optimizations improved overall “time to first useful click.”</li>\n\n\n\n<li><strong>Database tools work in browser:</strong> Improved database compatibility enabled tools like phpMyAdmin to be used directly on <a href=\"https://playground.wordpress.net\">playground.wordpress.net</a>.<br><strong>More practical tooling for real work:</strong> Testing configurations and previewing changes can happen in one place, without a complete local environment first.</li>\n\n\n\n<li><strong>New visual gallery of blueprints:</strong> A new <a href=\"https://wordpress.github.io/blueprints/\">visual gallery of blueprints</a> provides excellent starting points for various types of sites.</li>\n\n\n\n<li><strong>Global adoption:</strong> Playground was used 1.4 million times globally, with growing documentation translations and community contributions.</li>\n</ul>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Reliable Plugin Previews and Experimentation</h2>\n\n\n\n<p class=\"wp-block-paragraph\">A headline update from 2025 is the focus on compatibility. In testing with the top 1,000 plugins from the WordPress plugin directory, 99% installed and activated successfully. That matters because it raises confidence in what Playground is best known for: letting people try things quickly, without a complex setup, and with fewer surprises.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This highlighted that Playground is increasingly useful as a general-purpose PHP sandbox. Alongside WordPress, it can support standard PHP tools and projects, which makes it easier to explore how WordPress fits into broader development workflows and to share reproducible environments with others.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you try something new and unexpected in Playground, the update encourages you to share what you learn in the <a href=\"https://wordpress.slack.com/archives/playground\">#playground</a> Slack channel, so the community can build a clearer picture of what works well today and what is improving next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Faster Load Times</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Speed was a central theme in 2025. A recent <a href=\"https://make.wordpress.org/playground/2025/12/03/wordpress-playground-2025-year-in-review/\">year-in-review report</a> revealed a 42% reduction in average response time, and this is not just a single change. A series of improvements make Playground feel quicker in the moments people notice most, such as loading WordPress, opening wp-admin, and switching between tasks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Several behind-the-scenes updates were described in plain terms as “less waiting”: checks happen earlier, parts of the experience load in a smarter order, and more content is reused from cache, so repeat actions are snappier.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For people using Playground to review a plugin, validate a bug fix, or teach a class, these improvements mean the same thing: faster feedback loops, with fewer pauses that break concentration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Better Tooling and Compatibility</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In 2025, Playground also became more “toolbox-like” in the browser. The update highlighted features that reduce context switching, such as editing files on the page, building and testing starter configurations (Blueprints) in a dedicated editor, and launching database tools such as phpMyAdmin and Adminer with a single click.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the database side, a significant compatibility upgrade was introduced to improve support for more complex database behavior. The practical outcome is that more WordPress sites and plugins behave as expected in Playground, and more developer tools can run inside the environment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Blueprints also advanced in ways that benefit both builders and sharers. The updates focus on making starter setups easier to create, browse, and reuse, especially when a demo requires content, media, or a specific configuration that should launch consistently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the clearest ways to see that progress is the <a href=\"https://wordpress.github.io/blueprints/\"><strong>WordPress Blueprints Gallery</strong></a>, a community library of ready-to-launch WordPress environments. From practical “building block” examples (such as starting with a specific login role) to demos that automatically install themes and plugins, to richer setups that generate posts and featured images via WP-CLI, the gallery demonstrates how quickly an idea can become a fully functional site that you can browse and share.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Examples:</strong></p>\n\n\n\n<div class=\"wp-block-columns are-vertically-aligned-center has-dark-strokes-grey-background-color has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"border-width:12px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"714\" height=\"828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.51.02-pm.png?resize=714%2C828&#038;ssl=1\" alt=\"\" class=\"wp-image-19694\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.51.02-pm.png?w=714&amp;ssl=1 714w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.51.02-pm.png?resize=259%2C300&amp;ssl=1 259w\" sizes=\"auto, (max-width: 714px) 100vw, 714px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><a href=\"https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fwordpress%2Fblueprints%2Ftrunk%2Fblueprints%2Fstylish-press%2Fblueprint.json\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"714\" height=\"828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.53.15-pm.png?resize=714%2C828&#038;ssl=1\" alt=\"\" class=\"wp-image-19698\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.53.15-pm.png?w=714&amp;ssl=1 714w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.53.15-pm.png?resize=259%2C300&amp;ssl=1 259w\" sizes=\"auto, (max-width: 714px) 100vw, 714px\" /></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><a href=\"https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fwordpress%2Fblueprints%2Ftrunk%2Fblueprints%2Forganization-kentwood%2Fblueprint.json\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"714\" height=\"826\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-3.05.37-pm.png?resize=714%2C826&#038;ssl=1\" alt=\"\" class=\"wp-image-19704\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-3.05.37-pm.png?w=714&amp;ssl=1 714w, https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-3.05.37-pm.png?resize=259%2C300&amp;ssl=1 259w\" sizes=\"auto, (max-width: 714px) 100vw, 714px\" /></a></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"><em>For anyone who wants to experience the power of WordPress without the setup, the gallery serves as a strong reminder of what Playground makes possible: shareable, repeatable site experiences that work the same way every time — ideal for demos, workshops, testing, and “try it now” links.&nbsp;</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">Clear adoption signals back all of this. The review reports 1.4 million uses globally, documentation translations in multiple languages, and growing integration across the plugin directory through Playground-powered previews. It also points to a steady increase in community contribution, from documentation and support to talks and real-world workflows built on top of Playground.<br><br>A huge thank you to everyone who tried Playground over the past year,&nbsp; whether you launched a quick demo, tested a change, taught a workshop, or helped make the documentation more accessible in your language. And if there’s anything that would make Playground even more helpful for your day-to-day work, the project actively welcomes ideas and feature requests via the WordPress Playground GitHub issues tracker.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking Ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As we closed out 2025 and now look forward to 2026, we can see several forward-looking initiatives, including work on MySQL binary protocol support (to enhance broader compatibility with MySQL tools) and continued exploration of debugging enhancements, such as expanded XDebug access.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone who last tried Playground as a quick demo environment, 2025’s updates suggested a shift in direction: Playground is increasingly positioned as a practical layer for testing, teaching, previewing, and reviewing WordPress, both in the browser and in local workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"2026 Global Partner Program Announcement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/news/2025/12/2026-global-partner-program/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Dec 2025 17:16:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19534\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:412:\"Become a driving force behind WordPress innovation by joining the Global Community Sponsorship Program: a comprehensive initiative that supports the events and people powering our open source mission. As a Global Sponsor, your organization gains meaningful visibility across the international WordPress ecosystem while helping to fund events that foster growth, collaboration, and community. Why Choose [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11677:\"\n<p class=\"wp-block-paragraph\">Become a driving force behind WordPress innovation by joining the Global Community Sponsorship Program: a comprehensive initiative that supports the events and people powering our open source mission. As a Global Sponsor, your organization gains meaningful visibility across the international WordPress ecosystem while helping to fund events that foster growth, collaboration, and community.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/WordPress-Global-Partners-Program-2026-.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19617\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/WordPress-Global-Partners-Program-2026-.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/WordPress-Global-Partners-Program-2026-.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/WordPress-Global-Partners-Program-2026-.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/WordPress-Global-Partners-Program-2026-.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/WordPress-Global-Partners-Program-2026-.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Why Choose Global Sponsorship?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Instead of managing multiple individual sponsorships, this streamlined program consolidates your efforts into one efficient and impactful partnership.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Efficiency and Simplified Administration</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Skip the complexity of coordinating invoice payments with numerous volunteer teams. Our centralized approach saves time and resources. In 2026, sponsors will benefit from:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A dedicated Slack channel for direct communication with the WordPress Community Support team and Community Program Managers</li>\n\n\n\n<li>Monthly updates listing upcoming WordPress events, their current planning stages, and scheduled dates</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Expanded Reach and Impact</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Your sponsorship amplifies your presence worldwide, ensuring consistent visibility across global WordPress community events.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Stability and Reliability</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Your commitment strengthens locally organized events by providing predictable funding that supports venues, logistics, and growth.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Flexible Branding Options</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Adapt across your portfolio—Global Sponsors can represent different brands at different events (subject to approval and advance notice).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Program Benefits</h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"has-text-align-left\" data-align=\"left\"></td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Global&nbsp;Leader</strong></td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Regional Powerhouse</strong></td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Community Builder</strong></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\"><br><br><br><br><strong>Best for:<br></strong></td><td class=\"has-text-align-center\" data-align=\"center\">Established brands seeking global reach and year-round visibility.</td><td class=\"has-text-align-center\" data-align=\"center\">Companies aiming for regional dominance and strong brand recognition.</td><td class=\"has-text-align-center\" data-align=\"center\">Organizations supporting the next generation of WordPress education.</td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Sponsorship payable in full or through quarterly installments</td><td class=\"has-text-align-center\" data-align=\"center\">$180,000</td><td class=\"has-text-align-center\" data-align=\"center\">$110,000</td><td class=\"has-text-align-center\" data-align=\"center\">$60,000</td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Top tier sponsorship benefits at all local <a href=\"https://central.wordcamp.org/\">WordCamp</a> events (excludes flagships) with priority access to claim a sponsor table at in-person <a href=\"https://events.wordpress.org/\">WordPress events</a></td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"></td><td class=\"has-text-align-center\" data-align=\"center\"></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Option to feature multiple brands across events</td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"></td><td class=\"has-text-align-center\" data-align=\"center\"></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Dedicated sponsor landing page</td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Complimentary WordPress event tickets for your team</td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Recognition across all <a href=\"https://events.wordpress.org/\">WordPress events</a></td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td><td class=\"has-text-align-center\" data-align=\"center\"></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Sponsor Spotlight post on WordPress.org/news featuring highlights from recent <a href=\"https://central.wordcamp.org/\">WordCamps</a></td><td class=\"has-text-align-center\" data-align=\"center\">Quarterly</td><td class=\"has-text-align-center\" data-align=\"center\">Annually</td><td class=\"has-text-align-center\" data-align=\"center\"></td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Inclusion of your company logo in signage and materials for <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events</td><td class=\"has-text-align-center\" data-align=\"center\">All signage &amp; materials for the year (digital and printed)</td><td class=\"has-text-align-center\" data-align=\"center\">Signage &amp; materials for 5 events per year (printed only)</td><td class=\"has-text-align-center\" data-align=\"center\">All signage &amp; materials for the year (digital and printed)</td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Opportunity to be featured in an exclusive digital binder for <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> event organizers</td><td class=\"has-text-align-center\" data-align=\"center\">Priority placement (logos &amp; text)</td><td class=\"has-text-align-center\" data-align=\"center\">Feature listing (text only)</td><td class=\"has-text-align-center\" data-align=\"center\">Feature listing (text only)</td></tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Regular recognition in <a href=\"https://make.wordpress.org/community/2025/11/03/monthly-education-buzz-report-october-2025/\">monthly education buzz report</a></td><td class=\"has-text-align-center\" data-align=\"center\"></td><td class=\"has-text-align-center\" data-align=\"center\"></td><td class=\"has-text-align-center\" data-align=\"center\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></td></tr></tbody></table></figure>\n\n\n\n<h2 class=\"wp-block-heading\">How Sponsorship Funds Are Used</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Global Sponsorship funds directly support:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Local WordPress events worldwide (venue rental, catering, A/V, and more)</li>\n\n\n\n<li>Meetup.com license fees for over 671 WordPress Meetup groups globally</li>\n\n\n\n<li>Administrative costs like insurance, banking, and annual financial audits that ensure transparent operations</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Your partnership helps sustain the community that powers more than 43% of the web. Together, we can keep the WordPress project thriving and expanding for years to come.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-d1b48064 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center wp-block-paragraph\"><strong><strong>If your company is interested in joining the Global Sponsorship program or you would like to know more, please reach out</strong></strong>.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"mailto:support@wordcamp.org\">Contact WordPress Community Support</a></div>\n</div>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Please see&nbsp;<a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/fundraising/global-community-sponsorship-for-event-organizers/#rules-for-sponsor-materials\">Rules for Sponsor Materials</a>&nbsp;for more details about terms of sponsorship. Please also see our&nbsp;<a href=\"https://make.wordpress.org/community/files/2024/12/Draft-of-2025-WordPress-Global-Community-Sponsorship-Agreement-Template-Google-Docs.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">sample sponsorship agreement</a>.</em></p>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to go one step further, please consider <a href=\"https://wordpressfoundation.org/donate/\">donating directly to the WordPress Foundation</a>. We operate lean—every dollar goes toward keeping WordPress free, supporting education, and funding the community that makes the web a better place. In short, your donation helps us keep the lights on and the mission alive.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19534\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:65:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"State of the Word 2025: Innovation Shaped by Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2025/12/sotw-2025/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2025 18:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19447\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"State of the Word 2025 brought the WordPress community together for an afternoon that felt both reflective and forward-moving, blending stories of global growth with technical milestones and glimpses of the future. This year also marked the twentieth State of the Word since the first address in 2006, a milestone noted in the WordPress history [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2025/12/Telex-demo-776.mp4\";s:6:\"length\";s:8:\"29136831\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:53:\"https://wordpress.org/news/files/2025/12/wapu-513.mp4\";s:6:\"length\";s:9:\"102323371\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:37924:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"State of the Word 2025\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/U_DF4-23C8Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\">State of the Word 2025 brought the WordPress community together for an afternoon that felt both reflective and forward-moving, blending stories of global growth with technical milestones and glimpses of the future. This year also marked the twentieth State of the Word since the first address in 2006, a milestone noted in the WordPress history book <a href=\"https://wordpress.org/book/2015/11/wordcamp-2006/\"><em>Milestones: The Story of WordPress</em></a> as the beginning of a tradition that has helped the project tell its own story.</p>\n\n\n\n<p class=\"wp-block-paragraph\">From the outset, the keynote carried a sense of momentum shaped by thousands of contributors, educators, students, and creators whose steady participation continues to define the open web. It was a reminder that WordPress is more than software. It is a community writing its future together.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">What we have is more than code. It’s momentum, it’s culture, and it’s a system that lets people learn by doing and lead by showing up.  — <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a>, WordPress Executive Director</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Mary opened the evening by reflecting on her first full year as Executive Director, a year spent listening deeply and seeing firsthand how people across regions learn, contribute, and lead. Her remarks grounded the keynote in the lived reality of a community that grows because people invest in one another, teach openly, and build trust through contribution.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">I’ve met people using WordPress to unlock new careers. I’ve met contributors who started a single translation or forum post and are now leading major pieces of the project. In LatAm, Europe, and the States, I’ve seen students get access to WordPress tools and start building faster than we could have ever imagined. I’ve watched communities build in public, resolve disagreements in the open, and collaborate across languages and time zones.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That reflection offered a clear reminder of what makes WordPress resilient through change: a culture of showing up, learning by doing, and supporting others along the way. The project moves forward because people choose to participate in ways both large and small, strengthening the foundation that has carried WordPress for more than two decades.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With that foundation in place, the keynote moved through a series of stories and demonstrations that highlighted where WordPress stands today and where it is headed next — from a historic live release of WordPress 6.9 to expanding global education pathways, emerging AI capabilities, and deeper collaboration across the entire ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress by the Numbers</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Project Cofounder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> began with a wide-angle view of the project’s growth. WordPress powers over 43% of the web, with 60.5% of the CMS market. Shopify, its nearest competitor, holds 6.8%. Among the top 1,000 websites, WordPress’s share climbed to 49.4%, up 2.3% from the previous year.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Globe graphic noting 43% of websites and 60.5% CMS market share\" class=\"wp-image-19500\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Multilingual usage continued its strong rise. Over 56% of WordPress sites now run in languages other than English. Japan stood out, with WordPress powering 58.5% of all Japanese websites and 83% of the CMS market. Japanese became the second most-used language on WordPress at 5.82%. Spanish followed, then German, French, and Brazilian Portuguese.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The plugin ecosystem saw explosive growth. The directory surpassed 60,000 plugins, and plugin downloads were on pace to reach 2.1 billion by year-end. Over 1,500 themes have been released this year as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Contributors also hit new highs. The 6.8 release included 921 contributors, the largest group yet. WordPress 6.8 saw 79.5 million downloads, up 13%, and WordPress 6.9 included contributions from 230 first-time contributors and more than 340 enhancements and fixes.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Release Moment to Remember</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This year’s keynote delivered something WordPress had never attempted before: a live on-stage release of <a href=\"https://wordpress.org/download/releases/6-9/\">WordPress 6.9</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"WordPress 6.9 Gene album cover art\" class=\"wp-image-19511\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Mary set the moment up earlier in the program, calling WordPress 6.9 “fast, polished, and built for collaboration.” She explained that it reflected a year of intentional iteration, improved workflows, and deeper cross-team participation.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Matt took the stage with some of the release leads, the release button in hand. The room counted down, and then WordPress 6.9 shipped live, instantly updating millions of sites around the world. It was both a celebration and a testament to the reliability and trust the WordPress community has built into its release processes. Shipping a major version of WordPress in real time, on stage, without drama, is something the early contributors could hardly have imagined.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Photo of WordPress release leads pressing the button to release 6.9\" class=\"wp-image-19457\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">That reflection connected back to WordPress’s origin story. Matt talked about discovering the <a href=\"https://en.wikipedia.org/wiki/WordPress#History\">B2</a> forums, asking questions, and eventually reaching the point where he could answer someone else’s. That transition from learner to contributor remains at the heart of the project today. Two decades later, WordPress has grown from those early interactions into a platform that can ship a major release in front of the world, powered by thousands of contributors building together.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress and the Future of AI</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As the keynote shifted toward the future, Matt acknowledged what has become an essential truth of the moment: it would be impossible to talk about the next chapter of WordPress without talking about AI. He reminded the audience that in 2022, long before ChatGPT entered global conversation, he encouraged the community to “learn AI deeply.” The speed of change since then, he said, has exceeded every expectation, and WordPress has been preparing for it in ways both visible and behind the scenes.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Timeline of AI: 2022 ChatGPT launches, 2023 GPT-4 and Claude launches, 2024 Multimodel and video generation, 2025 AI everywhere\" class=\"wp-image-19510\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Matt introduced one of the most important architectural developments of the year: the Abilities API and the MCP adapter. The Abilities API defines what WordPress can do in a structured way that AI systems can interpret, while the MCP adapter exposes those abilities through a shared protocol. This means AI agents — whether built by individuals, companies, or larger platforms — can understand and interact with WordPress safely and predictably. Instead of relying on one-off integrations or brittle interfaces, WordPress now participates in a broader ecosystem of tools that can query its capabilities and perform tasks using a standard, governed approach.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Matt then highlighted how developers are already using AI in their everyday work through tools like Cursor, Claude Code, and next-generation CLIs. These tools can explore entire codebases, generate documentation, produce tests, refactor large components, and even coordinate sequences of WP-CLI commands. For many developers, they expand what a single person can accomplish in an afternoon. They don’t eliminate the need for human judgment — they amplify it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With that foundation laid, Matt turned the audience’s attention to <a href=\"https://telex.automattic.ai/\">Telex</a>, the experimental environment designed to turn natural-language prompts into Gutenberg Blocks. Telex has already moved beyond experimentation and into real use. Matt showed examples from community creator Nick Hamze, who uses Telex to power micro-business tools that represent practical, revenue-generating workflows that previously required custom engineering.</p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"2160\" style=\"aspect-ratio: 3840 / 2160;\" width=\"3840\" controls src=\"https://wordpress.org/news/files/2025/12/Telex-demo-776.mp4\"></video></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Matt then widened the lens to show what companies across the ecosystem are building with AI. Hostinger’s Kodee can generate a complete WordPress site from a single description. Elementor AI demonstrated similarly rapid creation inside its own editor, producing full sections and layouts in seconds. WordPress.com showcased how its AI tools help users draft, rewrite, and refine content while keeping language aligned with the site’s voice. Yoast demonstrated how AI can support SEO workflows by generating structured suggestions and improving readability. Together, these examples illustrated that AI is not arriving in one place — it is arriving everywhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Experimental browsers can navigate WP Admin autonomously, performing tasks such as clicking buttons, opening menus, changing settings, and performing multi-step tasks without requiring any custom plugins or APIs. This raised a key question that Matt encouraged the community to consider: Which AI capabilities should live inside WordPress itself, and which should remain external, operating through the browser or operating system?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Matt closed the section by discussing WordPress-specific AI benchmarks and evaluation suites. These shared tests will measure how well AI systems understand and execute WordPress tasks, from enabling plugins to navigating WP Admin to modifying content and settings. The goal is to create a foundation where future AI tools behave predictably and responsibly across the entire ecosystem, giving creators confidence that intelligent tools understand the platform deeply.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Community Growing Together</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Mary then returned to the stage to celebrate the ecosystem that supports WordPress&#8217;s growth. Across continents, diverse groups of people have hosted WordPress events, training new contributors and welcoming newcomers into the project. WordCamp growth in 2025 reflected that: more than 81 WordCamps across 39 countries, powered by over 5,000 volunteers and attended by nearly 100,000 people, with sixteen more events still underway.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19503\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Education played a major role in this community expansion. Learn.WordPress.org served over 1.5 million learners this year, with clearer pathways into more structured programs like <a href=\"https://wordpress.org/education/campus-connect/\">Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a>. This bridging was deliberate. Many learners arrive through tutorials or workshops but need clearer guidance on how to deepen their skills. By reshaping navigation and improving wayfinding across WordPress.org, the project began closing that gap.</p>\n\n\n\n<p class=\"wp-block-paragraph\">She spotlighted <a href=\"https://make.wordpress.org/community/2025/09/29/wordpress-and-higher-education-an-alliance-that-transforms/\">Costa Rica’s Universidad Fidélitas</a>, where WordPress moved beyond extracurricular interest into formal academic integration. Long before signing an agreement with the WordPress Foundation, their students were hosting WordCamp San José, forming student clubs, and treating WordPress as a crucial part of digital literacy and professional development.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19505\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">Students of the WordPress Fidélitas Club</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Wapuu appeared across events as a familiar companion and a cultural thread running through contributor tools and community projects. Its presence was a reminder that creativity and playfulness are as essential to open source as documentation or code.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Various Wapuu artwork examples\" class=\"wp-image-19506\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Matt highlighted the story of <a href=\"https://events.wordpress.org/managua/2025/wordpress-youth-day/\">Youth Day in Managua, Nicaragua</a>. Seventy-five young people spent a full day building their first WordPress sites. Sessions were taught by teenagers, for teenagers. They learned to pick themes, customize layouts, create contact forms, and publish content. Contribution often starts with a simple moment of confidence, and those early sparks can shape entire careers.</p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"2160\" style=\"aspect-ratio: 3840 / 2160;\" width=\"3840\" controls src=\"https://wordpress.org/news/files/2025/12/wapu-513.mp4\"></video></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Together, these moments illustrated a project expanding not just in numbers, but in depth, diversity, and global reach. WordPress is growing because communities are finding their own ways to embrace it.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s New in WordPress 6.9</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Joining virtually, WordPress Lead Architect, <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, shifted the keynote from vision to practice. Matías offered a detailed walkthrough of what makes WordPress 6.9 one of the most refined, collaborative, and forward-looking releases the project has shipped in years. He returned to the four familiar lenses of creation — writing, designing, building, and developing — and showed how each evolved in this release cycle.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He began with notes in the Block Editor, one of the most anticipated features. Notes allow collaborators to comment directly on individual blocks in a post or page. When a note is selected, the surrounding content subtly fades, helping contributors stay focused on context. Because notes are built on WordPress’s native comment system, they integrate seamlessly with existing communication workflows, including email notifications. Matías highlighted that notes development exemplified collaboration at its best, with contributors from various companies working together to bring the feature to life.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"WordPress 6.9 Feature Demo\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/vkYulcN0lbc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\">From there, he turned to refinements across the writing and design experience. Editor interactions feel smoother and more consistent. Patterns behave more predictably. Spacing and typography controls are clearer, more organized, and more intuitive. Together these capabilioties make the experience of writing and designing inside WordPress calmer, more reliable, and more empowering.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Block bindings now provide a more intuitive, visual way to connect blocks to dynamic data sources. Users can switch or remove bindings with a single click, and developers can register additional sources to support custom workflows. This work lays the foundation for a future where dynamic data flows more naturally through blocks, enabling site creators to build richer interfaces without writing code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the developer front, Matías focused on three foundational upgrades that represent major steps forward in how WordPress will evolve over the coming years.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The first was the <strong>Abilities API</strong>, a unified registry that describes what WordPress can do — across PHP, REST endpoints, the command palette, and future AI-driven interactions.</li>\n\n\n\n<li>The <strong>HTML API</strong> introduces new ways of working with and modifying HTML server-side. The API ensures safer, more reliable handling, lowering the barrier for theme and block developers who work with dynamic or structured markup.</li>\n\n\n\n<li>The <strong>Interactivity API</strong> delivers smoother, faster interactions without requiring heavy JavaScript frameworks. Improved routing, better state management, and clearer conventions help developers create rich, modern interfaces without leaving the WordPress philosophy of simplicity and flexibility.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">After Matías wrapped his presentation, Matt stepped back in to highlight several developments that build on the foundations of 6.9 and strengthen the overall WordPress ecosystem. He pointed first to the <a href=\"https://wordpress.org/plugins/plugin-check/\">Plugin Check Plugin</a>, a tool designed to help developers align with current WordPress standards and catch common issues early, making plugins more reliable for users and easier to maintain over time. Matt then spoke about ongoing progress in <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, noting improvements to the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> that make it easier for people to bring their content into WordPress without disruption or loss, an important step toward ensuring the open web remains portable and resilient. He also highlighted advances across the <a href=\"https://playground.wordpress.net/\">Playground</a> ecosystem, including <a href=\"https://developer.wordpress.com/studio/\">WordPress Studio</a>, the Playground CLI, and an expanding set of Blueprints. These allow developers and learners to spin up complete WordPress environments in seconds, test ideas, and experiment without servers or configuration. Matt closed this portion by emphasizing work on safer updates, which help WordPress avoid partial installs and ensure that updates complete smoothly even in less predictable hosting conditions, reinforcing WordPress’s commitment to stability as the platform continues to grow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Matt emphasized that WordPress 6.9 is not defined by any single headline feature, but by a broad spectrum of refinements across the entire experience. It is a release that deepens reliability, expands capability, and sets the stage for future innovation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Insights from the AI Panel</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The keynote transitioned into a live AI panel moderated by Mary Hubbard. The panel brought together four perspectives from across the ecosystem: <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> (Automattic), <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> (Google), and <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> (Fueled, FKA 10up), and Matt Mullenweg. Their conversation touched on the philosophy, practice, and future of AI inside WordPress — not as a distant trend, but as an active part of the project’s evolution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A central theme was AI’s ability to amplify human creativity. James LePage put it plainly:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">It’s not that we’re going to just add sparkle buttons everywhere. We’re going to do some crazy stuff here — things we’re going to build into the way you interact with creating content, with expressing yourself digitally. We want to give you more power, more control, and make you more effective at creating.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Jeff Paul echoed this sentiment, emphasizing that AI should make developers more productive by handling repetitive work and freeing them to focus on higher-level decisions. Felix Arntz expanded the idea further, describing how Google sees AI as a way to make the web more accessible and intuitive, especially for new creators who may not have formal technical training.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"572\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/panel.jpg?resize=1024%2C572&#038;ssl=1\" alt=\"\" class=\"wp-image-19462\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=1024%2C572&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=300%2C168&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=768%2C429&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=1536%2C858&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=2048%2C1144&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">From left to right: Mary Hubbard, Matt Mullenweg, Jeff Paul, Felix Arntz, James LePage</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Looking ahead, the panelists predicted deeper contextual integrations, AI-assisted debugging and scaffolding for developers, and workflows where agents can take on sequences of tasks while remaining directed by human decisions. They also highlighted the importance of standards, shared protocols, and privacy-focused design as essential components of WordPress’s long-term approach.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The next 20 years looks like WordPress remaining what it is today, which is the center of the open web.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The panel closed on a forward-looking but steady note. AI is accelerating, but WordPress is designing its foundations with flexibility and values that endure. The tools may change, but the commitment to openness, agency, and creative freedom remains the compass.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Questions That Push Us Forward</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Matt introduced the Q&amp;A as one of his favorite parts of State of the Word because it reveals what people are imagining, struggling with, or eager to build.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Q&amp;A\" class=\"wp-image-19512\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The first question addressed the growing interconnectedness of today’s web. What happens, a participant asked, when a major provider like Cloudflare goes down? As tools and agents rely more heavily on external services, failures can cascade. Matt acknowledged that outages are increasingly visible, but also argued that each one strengthens the system.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">&#8220;Every failure, every edge case, everything that you never imagined is just another opportunity to find that new edge case,” he said. Resilience is not avoidance of failure, but the ability to grow stronger after it.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Another question focused on the longevity of web content. With platforms shutting down or links breaking over time, how can creators ensure their work endures? Matt pointed to the Internet Archive as one of the great stabilizers of the open web. He highlighted a <a href=\"https://wordpress.org/plugins/internet-archive-wayback-machine-link-fixer/\">new plugin</a> that automatically scans posts and replaces dead links with archived versions, helping preserve the historical fabric of the web even as individual services come and go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The next question turned to real-time collaboration inside WordPress. A participant asked how co-editing fits into the future of WordPress and how these tools might help creators work more confidently. Matt talked about how collaboration tools can support people who are just starting their creative journeys — whether they are entrepreneurs, students, or first-time site builders. He described real-time editing as part of a broader vision of WordPress “just doing the work for you” in high-pressure or early-stage creative moments.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The final question considered long-term decision-making. Matt noted that predicting what will change is difficult, but identifying what will remain the same is much easier. For WordPress, he said, the invariant is clear: people will always want agency, openness, and the ability to publish on their own terms. These values guide decisions not only in the present, but across decades of future evolution.</p>\n\n\n\n<h2 class=\"wp-block-heading\">TBPN Podcast Appearance</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"&#x1f534; CODE RED &#x1f534;, Dell Donates Size, Bun Acquired, AWS CEO Joins, Tae Kim Tells All\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/eBQh57HuJzk?start=10036&#038;feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\">After the Q&amp;A, the keynote shifted gears with a live crossover segment featuring TBPN (the Technology Business Programming Network), a tech-focused podcast. The segment introduced a lively, unscripted energy into the room.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The hosts kicked things off by asking Matt what the “word of the year” should be. He chose “freedom”, connecting it directly to the core philosophy of open source. He described open source licenses as a kind of “bill of rights for software,” giving users inalienable rights that no company can revoke. In a world increasingly shaped by software platforms and digital ecosystems, these freedoms form the heart of what keeps the web open and accessible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Conversation then moved to <a href=\"https://www.beeper.com/\">Beeper</a>, the multi-network messaging client. Asked whether Beeper aims to “tear down walled gardens,” Matt rejected that framing. Instead, he offered a more collaborative metaphor: bringing gardens together. Most people have friends and colleagues scattered across WhatsApp, Instagram, LinkedIn, Messenger, and SMS. Beeper doesn’t replace those apps — it brings messages together into a unified interface..</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation eventually returned to publishing. Matt referenced the same principle he noted earlier: the importance of identifying what won’t change. For WordPress, he said, that means doubling down on freedom, agency, and the ability to publish without gatekeepers. Even as AI evolves, even as platforms shift, even as new tools emerge, these are the values that will guide the project forward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Building the Web We Believe In</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As the keynote drew to a close, Matt returned to a message that had threaded through every section of the evening. The future of WordPress is not arriving from outside forces — it is being crafted, questioned, tested, and expanded by the people who show up. Contributors, students, educators, community organizers, designers, developers, business owners, and first-time site builders all play a role in shaping the platform.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He spoke about the opportunities ahead: new tools that expand what creators can build, collaborative features that make teamwork feel natural, and AI systems that enhance creativity rather than diminish it. Across continents, generations, and skill levels, people are discovering WordPress as a path to learning, empowerment, and expression.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The values that brought the project this far remain the ones that will carry it forward: freedom, participation, learning, and community. These aren’t abstract principles. They are lived every day in the decisions contributors make, the ideas they pursue, and the care they bring to the work.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Future Events</h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re feeling inspired to revisit past moments from the project’s annual address, the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ES1piZxljCvMTJCYpVBnwYU\">State of the Word YouTube playlist</a> offers a look back at years of community milestones and product progress. The excitement continues into 2026, with major WordPress events already on the horizon: <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia</a> in Mumbai, India,<a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a> in Kraków, Poland, and <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a> in Phoenix. We hope to see you there as the community continues building what comes next.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress 6.9 “Gene”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2025/12/gene/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Dec 2025 20:12:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19398\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:495:\"WordPress 6.9, code-named \"Gene,\" brings major upgrades to how teams collaborate and create. The Notes feature introduces block-level commenting to streamline reviewing and polishing content, navigating across the entire dashboard with the Command Palette is now faster for power users, and the new Abilities API provides a standardized way to open the door for AI-powered and automated workflows. Combined with all the performance and accessibility improvements, 6.9 is one to write home about.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:82638:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9.png?resize=1024%2C535&#038;ssl=1\" alt=\"WordPress 6.9 Release Edition Featured Image\" class=\"wp-image-19404\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=2048%2C1070&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.9, code-named “Gene,” honors the American Jazz pianist Gene Harris.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">A piano veteran, self taught at the age of six, Harris infused mainstream jazz with elements of soul, blues, and gospel, creating a warm, signature sound that is both elegant and iconic. Harris’ bluesy jazz lived at the intersection of worlds, weaving a rich landscape of texture and mood, with a thread of soulfulness that ignited listeners.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 6.9</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9 brings major upgrades to how teams collaborate and create. The new Notes feature introduces block-level commenting when writing posts and pages that streamlines reviews, while the expanded Command Palette makes it faster for power users to navigate and operate across the entire dashboard. The new Abilities API provides a standardized, machine-readable permissions system that opens the door for next generation AI-powered and automated workflows. This release also delivers notable performance improvements for faster page loads and adds several practical new blocks alongside a more visual drag and drop to help creators build richer, more dynamic content.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/wordpress-6.9.zip\">Download WordPress 6.9 &#8220;Gene&#8221;</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing Notes: Seamless, Block-Level Collaboration</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Collaborate Smarter</strong> : Leave Feedback Right Where You&#8217;re Working</p>\n\n\n\n<p class=\"wp-block-paragraph\">With notes attached directly to blocks in the post editor, your team can stay aligned, track changes, and turn feedback into action all in one place. Whether you&#8217;re working on copy or refining design in your posts or pages, collaboration happens seamlessly on the canvas itself.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1360\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=1360%2C840&#038;ssl=1\" alt=\"View of people interacting with notes in a post.\" class=\"wp-image-19428\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?w=1360&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=768%2C474&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette Throughout the Dashboard</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Your tools are always at hand.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Access the Command Palette from any part of the dashboard, whether you&#8217;re writing your latest post, deep in design in the Site Editor, or browsing your plugins. Everything you need, just a few keystrokes away.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1360\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=1360%2C840&#038;ssl=1\" alt=\"Command palette showing the ability to navigate across different parts of the site, including templates, Settings, and all posts.\" class=\"wp-image-19430\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?w=1360&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=768%2C474&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Fit text to container</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Content that adapts.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s a new typography option for text-based blocks that&#8217;s been added to the Paragraph and Heading blocks. This new option automatically adjusts font size to fill its container perfectly, making it ideal for banners, callouts, and standout moments in your design.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1360\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=1360%2C840&#038;ssl=1\" alt=\"&quot;Novem&quot; text selected and stretching across the interface.\" class=\"wp-image-19431\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?w=1360&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=768%2C474&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">The Abilities API</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Unlocking the next generation of site interactions.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9 lays the groundwork for the future of automation with the unified Abilities API. By creating a standardized registry for site functionality, developers can now register, validate, and execute actions consistently across any context—from PHP and REST endpoints to AI agents—paving the way for smarter, more connected WordPress experiences.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=1024%2C632&#038;ssl=1\" alt=\"Abstract view of circles around a plugin icon with sparkles, indicating AI functionality.\" class=\"wp-image-19432\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Accessibility Improvements</h2>\n\n\n\n<p class=\"wp-block-paragraph\">More than 30 accessibility fixes sharpen the core WordPress experience. These updates improve screen reader announcements, hide unnecessary CSS-generated content from assistive tech, fix cursor placement issues, and make sure typing focus stays put even when users click an autocomplete suggestion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance enhancements</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9 delivers significant frontend performance enhancements, optimizing the site loading experience for visitors. 6.9 boasts an improved LCP (Largest Contentful Paint) through on-demand block styles for classic themes, minifying block theme styles, and increasing the limit for inline styles &#8211; removing blockages to page rendering and clearing the rendering path by deprioritizing non-critical scripts. This release comes with many more performance boosts, including optimized database queries, refined caching, improved spawning of WP Cron, and a new template enhancement output buffer that opens the door for more future optimizations.</p>\n\n\n\n<h3 class=\"wp-block-heading\">And much more</h3>\n\n\n\n<p class=\"wp-block-paragraph\">For a comprehensive overview of all the new features and enhancements in WordPress 6.9, please visit the feature-showcase website.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/download/releases/6-9\">Check out What&#8217;s New</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.9</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.9\">WordPress 6.9 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the <a href=\"https://make.wordpress.org/core/wordpress-6-9-field-guide/\">WordPress 6.9 Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.9 release squad</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.9 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordination: <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a></li>\n\n\n\n<li>Tech Leads: <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a></li>\n\n\n\n<li>Triage Leads: <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9 reflects the tireless efforts and passion of more than 900+ contributors in countries all over the world. This release also welcomed over 279 first-time contributors!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Their collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all &#8211; a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><p class=\"has-small-font-size\"><a href=\"https://profiles.wordpress.org/o-o/\">2046</a> · <a href=\"https://profiles.wordpress.org/aakashverma1/\">Aakash Verma</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/aarti1318/\">Aarti Chauhan</a> · <a href=\"https://profiles.wordpress.org/thehercules/\">Aashish Sharma</a> · <a href=\"https://profiles.wordpress.org/aatospaja/\">aatospaja</a> · <a href=\"https://profiles.wordpress.org/abduremon/\">Abdur Rahman Emon</a> · <a href=\"https://profiles.wordpress.org/hurayraiit/\">Abu Hurayra</a> · <a href=\"https://profiles.wordpress.org/acmoifr/\">acmoifr</a> · <a href=\"https://profiles.wordpress.org/kawauso/\">Adam Harley (Kawauso)</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/oztaser/\">Adil &#214;ztaşer</a> · <a href=\"https://profiles.wordpress.org/adityab98/\">Aditya Bansode</a> · <a href=\"https://profiles.wordpress.org/b1ink0/\">Aditya Dhade</a> · <a href=\"https://profiles.wordpress.org/adityashah2411/\">aditya shah</a> · <a href=\"https://profiles.wordpress.org/iamadisingh/\">Aditya Singh</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/agulbra/\">agulbra</a> · <a href=\"https://profiles.wordpress.org/elazzabi/\">Ahmed</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/ajaxstardust/\">ajaxStardust</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/akanshusingh/\">Akanshu Singh</a> · <a href=\"https://profiles.wordpress.org/akeda/\">Akeda Bagus</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/akshaydhere/\">Akshay Dhere</a> · <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/alejandrogonzalvo/\">alejandrogonzalvo</a> · <a href=\"https://profiles.wordpress.org/alexcu21/\">Alex Cuadra</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexclassroom/\">Alex Lion (阿力獅)</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/alexus450/\">Alexei Samarschi</a> · <a href=\"https://profiles.wordpress.org/alexius08/\">Alexis Pandaan</a> · <a href=\"https://profiles.wordpress.org/alordiel/\">alordiel</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/amanandhishoe/\">amanandhishoe</a> · <a href=\"https://profiles.wordpress.org/alh0319/\">Amber Hinds</a> · <a href=\"https://profiles.wordpress.org/amin7/\">Amin</a> · <a href=\"https://profiles.wordpress.org/theaminuldev/\">Aminul Islam</a> · <a href=\"https://profiles.wordpress.org/aialvi/\">Aminul Islam Alvi</a> · <a href=\"https://profiles.wordpress.org/amitbhosale/\">Amit Bhosale</a> · <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a> · <a href=\"https://profiles.wordpress.org/anatolbroder/\">Anatol Broder</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/andrewhoyer/\">Andrew Hoyer</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/mymothersdaughter/\">Anita C</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/anujrathore24/\">Anuj Singh</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apmeyer/\">apmeyer</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/fliespl/\">Arkadiusz Rzadkowolski</a> · <a href=\"https://profiles.wordpress.org/armandovias/\">Armando</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/asdofindia/\">asdofindia</a> · <a href=\"https://profiles.wordpress.org/ashfame/\">Ashish Kumar (Ashfame)</a> · <a href=\"https://profiles.wordpress.org/akashdev/\">Ashraful Haque Akash</a> · <a href=\"https://profiles.wordpress.org/askapache/\">askapache</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/aut0poietic/\">aut0poietic</a> · <a href=\"https://profiles.wordpress.org/aksl95/\">Axel DUCORON</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azharderaiya/\">Azhar Deraiya</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">B&#233;ryl de La Grandi&#232;re</a> · <a href=\"https://profiles.wordpress.org/bartnv/\">bartnv</a> · <a href=\"https://profiles.wordpress.org/bchecketts/\">bchecketts</a> · <a href=\"https://profiles.wordpress.org/beee/\">Beee</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benazeer/\">Benazeer</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/bvl/\">Benny</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a> · <a href=\"https://profiles.wordpress.org/bhattaganesh/\">bhattaganesh</a> · <a href=\"https://profiles.wordpress.org/bhaveshdesai/\">Bhavesh Desai</a> · <a href=\"https://profiles.wordpress.org/bidbmak/\">BiDbMAK</a> · <a href=\"https://profiles.wordpress.org/mbigul/\">Bigul Malayi</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/rainynewt/\">Bishal Shrestha</a> · <a href=\"https://profiles.wordpress.org/bobbyleenoblestudios/\">bobbyleenoblestudios</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/burlesonbrad/\">Brad Griffin</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradshawtm/\">bradshawtm</a> · <a href=\"https://profiles.wordpress.org/bhubbard/\">Brandon Hubbard</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/heybran/\">Brandon Zhang</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/brhodes/\">brhodes</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brumack/\">brumack</a> · <a href=\"https://profiles.wordpress.org/bschneidewind/\">Bryan Schneidewind</a> · <a href=\"https://profiles.wordpress.org/bshuchter/\">bshuchter</a> · <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a> · <a href=\"https://profiles.wordpress.org/byteninjaa0/\">byteninjaa0</a> · <a href=\"https://profiles.wordpress.org/cedche99/\">C&#233;dric Chevillard</a> · <a href=\"https://profiles.wordpress.org/callumbw95/\">Callum Bridgford-Whittick</a> · <a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/carlsteffen/\">CarlSteffen</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/corazondejaguar/\">Carolina Romo</a> · <a href=\"https://profiles.wordpress.org/ciobanucatalin/\">Catalin Ciobanu</a> · <a href=\"https://profiles.wordpress.org/catgofire/\">catgofire</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/ccharel/\">ccharel</a> · <a href=\"https://profiles.wordpress.org/cbutlerjr/\">Chad Butler</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/cherrygot/\">Chakrapani Gautam</a> · <a href=\"https://profiles.wordpress.org/chihsuan/\">Chi-Hsuan Huang</a> · <a href=\"https://profiles.wordpress.org/chillifish/\">Chillifish</a> · <a href=\"https://profiles.wordpress.org/chloed/\">ChloeD</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/czarate/\">Chris Zarate</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/chrisdotdotdot/\">chrisdotdotdot</a> · <a href=\"https://profiles.wordpress.org/chrismattix/\">chrismattix</a> · <a href=\"https://profiles.wordpress.org/christinecooper/\">christinecooper</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/cikrimcin/\">cikrimcin</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian Popescu</a> · <a href=\"https://profiles.wordpress.org/chrisvendiadvertisingcom/\">cjhaas</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/claimableperch/\">claimableperch</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/codebuddy/\">codebuddy</a> · <a href=\"https://profiles.wordpress.org/coleatkinson1/\">coleatkinson1</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/colind/\">ColinD</a> · <a href=\"https://profiles.wordpress.org/ogrecooper/\">Cooper Dalrymple</a> · <a href=\"https://profiles.wordpress.org/coralietixeront/\">Coralie Tixeront</a> · <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cornwell/\">Cornwell</a> · <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/cucocreative/\">cucocreative</a> · <a href=\"https://profiles.wordpress.org/cwhitmore/\">Cullen Whitmore</a> · <a href=\"https://profiles.wordpress.org/cyrille37/\">Cyrille37</a> · <a href=\"https://profiles.wordpress.org/daanvandenbergh/\">Daan van den Bergh</a> · <a href=\"https://profiles.wordpress.org/acketon/\">Dakota Chichester</a> · <a href=\"https://profiles.wordpress.org/damchtlv/\">damchtlv</a> · <a href=\"https://profiles.wordpress.org/damir-webthemer/\">Damir</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/dancameron/\">Dan Cameron</a> · <a href=\"https://profiles.wordpress.org/danielpw/\">Dan Waldschmidt</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/daniellacatus/\">daniellacatus</a> · <a href=\"https://profiles.wordpress.org/danielmorell/\">danielmorell</a> · <a href=\"https://profiles.wordpress.org/dscqbus/\">Danny Schmarsel</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">Dave Ryan</a> · <a href=\"https://profiles.wordpress.org/daveguitaruno/\">daveguitaruno</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">David Arenas</a> · <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/davidperez/\">David Perez</a> · <a href=\"https://profiles.wordpress.org/djivad/\">David Riviera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidb/\">DavidB</a> · <a href=\"https://profiles.wordpress.org/dawidadach/\">dawidadach</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/raftaar1191/\">Deepak Gupta</a> · <a href=\"https://profiles.wordpress.org/deepakprajapati/\">Deepak Prajapati</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/realloc/\">Dennis Ploetner</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densinakum/\">Densi Nakum</a> · <a href=\"https://profiles.wordpress.org/derekherman/\">derekherman</a> · <a href=\"https://profiles.wordpress.org/devasheeshkaul/\">Devasheesh Kaul</a> · <a href=\"https://profiles.wordpress.org/dhananjaykuber/\">Dhananjay Kuber</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dhruvik18/\">Dhruvik Malaviya</a> · <a href=\"https://profiles.wordpress.org/diebombe/\">diebombe</a> · <a href=\"https://profiles.wordpress.org/digitalblanket/\">digitalblanket</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divinenephron/\">divinenephron</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/dominiquepijnenburg/\">dominiquepijnenburg</a> · <a href=\"https://profiles.wordpress.org/donalirl/\">donalirl</a> · <a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a> · <a href=\"https://profiles.wordpress.org/dougmelvin/\">DougMelvin</a> · <a href=\"https://profiles.wordpress.org/drawcard/\">drawcard</a> · <a href=\"https://profiles.wordpress.org/dretzlaff/\">dretzlaff</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/dsawyers/\">dsawyers</a> · <a href=\"https://profiles.wordpress.org/dustintechsmith/\">dustintechsmith</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/ehti/\">Ehti</a> · <a href=\"https://profiles.wordpress.org/elialum/\">elialum</a> · <a href=\"https://profiles.wordpress.org/eliezerspp/\">Eliezer Pe&#241;a</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/elvismdev/\">Elvis Morales</a> · <a href=\"https://profiles.wordpress.org/emaildano/\">emaildano</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a> · <a href=\"https://profiles.wordpress.org/emranahmed/\">Emran Ahmed</a> · <a href=\"https://profiles.wordpress.org/enaanfarhan/\">Enaan Farhan</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/epeicher/\">epeicher</a> · <a href=\"https://profiles.wordpress.org/ekazda/\">Eric</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a> · <a href=\"https://profiles.wordpress.org/ejoling/\">Erik Joling</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/ethanscorey/\">ethanscorey</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/etobiesen/\">Even Tobiesen</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fakhriaz/\">fakhriaz (Fakhri Azzouz)</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/ffffelix/\">Felix Renicks</a> · <a href=\"https://profiles.wordpress.org/fellyph/\">Fellyph Cintra</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/frantorres/\">Francisco Torres</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a> · <a href=\"https://profiles.wordpress.org/frogdesk/\">FrogDesk Strategy</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Fumiki Takahashi</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">Gael Denysiak</a> · <a href=\"https://profiles.wordpress.org/gajendrasingh/\">Gajendra Singh</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/guddu1315/\">Gaurang Dabhi</a> · <a href=\"https://profiles.wordpress.org/gautam23/\">Gautam Mehta</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a> · <a href=\"https://profiles.wordpress.org/stoyanovgs/\">Georgi Stoyanov</a> · <a href=\"https://profiles.wordpress.org/gernberg/\">gernberg</a> · <a href=\"https://profiles.wordpress.org/giuliorubelli/\">giuliorubelli</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/guido07111975/\">Guido</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gulamdastgir04/\">Gulamdastgir Momin</a> · <a href=\"https://profiles.wordpress.org/adrock42/\">H. Adam Lenz</a> · <a href=\"https://profiles.wordpress.org/kabir93/\">H. Kabir</a> · <a href=\"https://profiles.wordpress.org/hanimbarek/\">hanimbarek</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardik2221/\">Hardik Raval</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshbhonsle08/\">harshbhonsle08</a> · <a href=\"https://profiles.wordpress.org/harshdeepgill/\">harshdeepgill</a> · <a href=\"https://profiles.wordpress.org/haruncpi/\">Harun</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/hideishi/\">Hidenori ISHIKAWA</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/hiroshisato/\">Hiroshi Sato</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a> · <a href=\"https://profiles.wordpress.org/hiteshtalpada/\">Hitesh Talpada</a> · <a href=\"https://profiles.wordpress.org/hozefasmile/\">Hozefa Saleh</a> · <a href=\"https://profiles.wordpress.org/hrohh/\">Hrohh</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hugosolar/\">hugosolar</a> · <a href=\"https://profiles.wordpress.org/humanify/\">humanify</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/iflairwebtechnologies/\">iflairwebtechnologies</a> · <a href=\"https://profiles.wordpress.org/ignatiusjeroe/\">ignatiusjeroe</a> · <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a> · <a href=\"https://profiles.wordpress.org/ikriv/\">ikriv</a> · <a href=\"https://profiles.wordpress.org/imokweb/\">imokweb</a> · <a href=\"https://profiles.wordpress.org/imranhasanraaz/\">Imran</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/iqbal1hossain/\">Iqbal Hossain</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/ishikaatxecurify/\">Ishika Bansal</a> · <a href=\"https://profiles.wordpress.org/ivanottinger/\">Ivan Ottinger</a> · <a href=\"https://profiles.wordpress.org/jabe/\">Jabe</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/jagirbahesh/\">Jagir Bahesh</a> · <a href=\"https://profiles.wordpress.org/jaiminp/\">Jaimin Prajapati</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> · <a href=\"https://profiles.wordpress.org/jhmonroe/\">James Monroe</a> · <a href=\"https://profiles.wordpress.org/q0rban/\">James Sansbury</a> · <a href=\"https://profiles.wordpress.org/jamestitus299/\">James Titus</a> · <a href=\"https://profiles.wordpress.org/codente/\">Jamie</a> · <a href=\"https://profiles.wordpress.org/jamieburchell/\">Jamie Burchell</a> · <a href=\"https://profiles.wordpress.org/jamesmarsland/\">Jamie Marsland</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">janthiel</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/jasalt/\">Jarkko Saltiola</a> · <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/jasonsa19/\">Jason Sauerwald</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jonmcpartland/\">Jay McPartland</a> · <a href=\"https://profiles.wordpress.org/shovan_jaya/\">Jayaram</a> · <a href=\"https://profiles.wordpress.org/jdeep/\">Jaydeep Das</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">Jaydip</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/maverick3x6/\">Jeff Golenski</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> · <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a> · <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeffro</a> · <a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremiahbratton/\">Jeremiah Bratton</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jkmassel/\">Jeremy Massel</a> · <a href=\"https://profiles.wordpress.org/slimndap/\">Jeroen Schmit</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a> · <a href=\"https://profiles.wordpress.org/jessedyck/\">jessedyck</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jhtjards/\">jhtjards</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">Jigar Bhanushali</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a> · <a href=\"https://profiles.wordpress.org/jnweaver/\">jnweaver</a> · <a href=\"https://profiles.wordpress.org/jojo256/\">Joan Namunina</a> · <a href=\"https://profiles.wordpress.org/jobata/\">JoAnne Obata</a> · <a href=\"https://profiles.wordpress.org/jochent/\">JochenT</a> · <a href=\"https://profiles.wordpress.org/jodamo5/\">jodamo5</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/timse201/\">Johannes J&#252;lg</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/brandbrilliance/\">John Brand</a> · <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/mindctrl/\">John Parris</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/johnvieth/\">JohnVieth</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josvelasco/\">Jos Velasco</a> · <a href=\"https://profiles.wordpress.org/josephscott/\">Joseph Scott</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/jrmd/\">jrmd</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juampick/\">Juan Cook</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juliengardair/\">juliengardair</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/itsroy69/\">Jyotirmoy Roy</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kaitohm/\">Kaito Hanamori</a> · <a href=\"https://profiles.wordpress.org/kakomap/\">Kakoma</a> · <a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a> · <a href=\"https://profiles.wordpress.org/karinchristen/\">Karin Christen</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/karthickmurugan/\">Karthick Murugan</a> · <a href=\"https://profiles.wordpress.org/karthikeya01/\">Karthikeya Bethu</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/codebykat/\">Kat Hagan</a> · <a href=\"https://profiles.wordpress.org/katinthehatsite/\">Kateryna K. a11n</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn Presner</a> · <a href=\"https://profiles.wordpress.org/katrinadtl/\">Katrina Massey</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/khushdoms/\">Kaushik Domadiya</a> · <a href=\"https://profiles.wordpress.org/onlykawshar/\">Kawshar Ahmed</a> · <a href=\"https://profiles.wordpress.org/kaygee79/\">kaygee79</a> · <a href=\"https://profiles.wordpress.org/mt8biz/\">Kazuto Takeshita</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/tinypixel/\">Kelly Mears</a> · <a href=\"https://profiles.wordpress.org/kgagne/\">Ken Gagne</a> · <a href=\"https://profiles.wordpress.org/kerfred/\">Kerfred</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kesselb/\">kesselb</a> · <a href=\"https://profiles.wordpress.org/kevinlearynet/\">Kevin Leary</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khushipatel15/\">Khushi Patel</a> · <a href=\"https://profiles.wordpress.org/killerbishop/\">killerbishop</a> · <a href=\"https://profiles.wordpress.org/iamkingsleyf/\">Kingsley Felix</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/solankisoftware/\">Kirtikumar Solanki</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/kleor/\">Kleor</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/kpapazov/\">kpapazov</a> · <a href=\"https://profiles.wordpress.org/kprocyszyn/\">kprocyszyn</a> · <a href=\"https://profiles.wordpress.org/krishaamer/\">krishaamer</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/kshaner/\">kshaner</a> · <a href=\"https://profiles.wordpress.org/kub1x/\">kub1x</a> · <a href=\"https://profiles.wordpress.org/kubiq/\">kubiq</a> · <a href=\"https://profiles.wordpress.org/kunalpuri123/\">kunalpuri123</a> · <a href=\"https://profiles.wordpress.org/kushsharma/\">Kush Sharma</a> · <a href=\"https://profiles.wordpress.org/kush123/\">Kushagra Goyal</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a> · <a href=\"https://profiles.wordpress.org/lakshyajeet/\">Lakshyajeet Singh Goyal</a> · <a href=\"https://profiles.wordpress.org/lalitkumawat/\">Lalit Kumawat</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurisaarni/\">Lauri Saarni</a> · <a href=\"https://profiles.wordpress.org/ldanielgiuliani/\">ldanielgiuliani</a> · <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> · <a href=\"https://profiles.wordpress.org/leedxw/\">leedxw</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leonidas Milosis</a> · <a href=\"https://profiles.wordpress.org/levinbaria/\">Levin Baria</a> · <a href=\"https://profiles.wordpress.org/lgseo/\">lgseo</a> · <a href=\"https://profiles.wordpress.org/lilgames/\">LilGames</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/logiclink/\">logiclink</a> · <a href=\"https://profiles.wordpress.org/logicrays/\">LogicRays Technologies</a> · <a href=\"https://profiles.wordpress.org/lordandy1984/\">lordandy1984</a> · <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a> · <a href=\"https://profiles.wordpress.org/lucasms/\">Lucas Martins</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasfritzedev/\">LukasFritzeDev</a> · <a href=\"https://profiles.wordpress.org/wpfed/\">Lukasz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/maccyd/\">maccyd</a> · <a href=\"https://profiles.wordpress.org/madhavishah01/\">Madhavi Shah</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/maikuolan/\">Maikuolan</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manhatthien98/\">manhatthien98</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">Manuel Camargo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/maorb/\">maorb</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Marcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/leadclown/\">Marcus</a> · <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> · <a href=\"https://profiles.wordpress.org/marian1/\">marian1</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/mariohamann/\">mariohamann</a> · <a href=\"https://profiles.wordpress.org/marius84/\">mariushosting</a> · <a href=\"https://profiles.wordpress.org/bozzmedia/\">Marty</a> · <a href=\"https://profiles.wordpress.org/martythornley/\">MartyThornley</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mathiscode/\">mathiscode</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">Matt Robinson</a> · <a href=\"https://profiles.wordpress.org/mattwest/\">Matt West</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a> · <a href=\"https://profiles.wordpress.org/mattryanwalker/\">mattryanwalker</a> · <a href=\"https://profiles.wordpress.org/jillro/\">Maud Royer</a> · <a href=\"https://profiles.wordpress.org/maxschmeling/\">Max Schmeling</a> · <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/faithcoder/\">Md Abdullah Al Arif</a> · <a href=\"https://profiles.wordpress.org/mabfahad/\">Md Abdullah Al Fahad</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/ismail0071/\">MD ISMAIL</a> · <a href=\"https://profiles.wordpress.org/kawsar007/\">MD Kawsar Chowdhury</a> · <a href=\"https://profiles.wordpress.org/masummollaalhaz/\">Md Masum Molla Alhaz</a> · <a href=\"https://profiles.wordpress.org/obiplabon/\">Md Obidullah (obiPlabon)</a> · <a href=\"https://profiles.wordpress.org/wprashed/\">Md Rashed Hossain</a> · <a href=\"https://profiles.wordpress.org/sabbir20/\">Md Sabbir Hossain</a> · <a href=\"https://profiles.wordpress.org/najmulsaju/\">Md. Najmul Islam</a> · <a href=\"https://profiles.wordpress.org/mehedi_csit/\">Md.Mehedi Hasan</a> · <a href=\"https://profiles.wordpress.org/mdmoreau/\">mdmoreau</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/mehrazmorshed/\">Mehraz Morshed</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michaelkeck/\">Michael Keck</a> · <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a> · <a href=\"https://profiles.wordpress.org/xmic/\">Michael Sumner</a> · <a href=\"https://profiles.wordpress.org/michaelreetz/\">michaelreetz</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle Schulp Hunt</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mobius5150/\">Mike</a> · <a href=\"https://profiles.wordpress.org/mikefitzman/\">Mike Fitzpatrick</a> · <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/ritterml/\">Mike Ritter</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/firestar300/\">Milan Ricoul</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/369work/\">Miroku</a> · <a href=\"https://profiles.wordpress.org/missveronicatv/\">missveronica</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mkeck/\">mkeck</a> · <a href=\"https://profiles.wordpress.org/mlaetitia1986/\">mlaetitia1986</a> · <a href=\"https://profiles.wordpress.org/mleray/\">mleray</a> · <a href=\"https://profiles.wordpress.org/mleraygp/\">mleraygp</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/mohkatz/\">Mohammed Kateregga</a> · <a href=\"https://profiles.wordpress.org/monarobase/\">Monarobase</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor Ssebunya</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtg169/\">mtg169</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/mukulsingh27/\">Mukul Singh</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/muryam/\">Muryam Sultana</a> · <a href=\"https://profiles.wordpress.org/mydesign78/\">mydesign78</a> · <a href=\"https://profiles.wordpress.org/sedmikrasky/\">N&#250;ria Nadal i Rovira</a> · <a href=\"https://profiles.wordpress.org/vyasnaman/\">Naman Vyas</a> · <a href=\"https://profiles.wordpress.org/nanisamireddy/\">NANI SAMIREDDY</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/muddassirnasim/\">Nasim Miah</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">Nate Finch</a> · <a href=\"https://profiles.wordpress.org/naveendwivedi/\">Naveen Dwivedi</a> · <a href=\"https://profiles.wordpress.org/navi161/\">Navneet Kaur</a> · <a href=\"https://profiles.wordpress.org/bugnumber9/\">Nazar Hotsa</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a> · <a href=\"https://profiles.wordpress.org/nexbridge/\">nexbridge</a> · <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/nickchomey/\">Nick</a> · <a href=\"https://profiles.wordpress.org/nickstarkloff/\">Nick</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nickbrazilian/\">nickbrazilian</a> · <a href=\"https://profiles.wordpress.org/nickjbedford/\">nickjbedford</a> · <a href=\"https://profiles.wordpress.org/nickpagz/\">nickpagz</a> · <a href=\"https://profiles.wordpress.org/nickwilmot/\">nickwilmot</a> · <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/nigelnelles/\">nigelnelles</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/smushytaco/\">Nikan Radan</a> · <a href=\"https://profiles.wordpress.org/nikunj8866/\">Nikunj Hatkar</a> · <a href=\"https://profiles.wordpress.org/nimeshatxecurify/\">Nimesh</a> · <a href=\"https://profiles.wordpress.org/ninomiho/\">Nino Mihovilic</a> · <a href=\"https://profiles.wordpress.org/ninos-ego/\">Ninos</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/othernoel/\">Noel Santos</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman</a> · <a href=\"https://profiles.wordpress.org/nosilver4u/\">nosilver4u</a> · <a href=\"https://profiles.wordpress.org/oceantober/\">oceantober</a> · <a href=\"https://profiles.wordpress.org/oferlaor/\">oferlaor</a> · <a href=\"https://profiles.wordpress.org/okat/\">okat</a> · <a href=\"https://profiles.wordpress.org/yasunocco/\">Okawa Yasuno</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Ophelia Rose</a> · <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/ozgursar/\">Ozgur Sar</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/palak678/\">Palak Patel</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/techpartho/\">Partho Hore</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</a> · <a href=\"https://profiles.wordpress.org/patpiwo/\">Patrick Piwowarczyk</a> · <a href=\"https://profiles.wordpress.org/pryley/\">Paul</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulbonneau/\">Paul Bonneau</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/paulstanos/\">paulstanos</a> · <a href=\"https://profiles.wordpress.org/vybiral/\">Pavel Vyb&#237;ral</a> · <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a> · <a href=\"https://profiles.wordpress.org/pedrofigueroa1989/\">Pedro Figueroa</a> · <a href=\"https://profiles.wordpress.org/peroks/\">Per Egil Roksvaag</a> · <a href=\"https://profiles.wordpress.org/peteringersoll/\">Peter Ingersoll</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/philipjohn/\">Philip John</a> · <a href=\"https://profiles.wordpress.org/philsola/\">Philip Sola</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/piskvorky/\">piskvorky</a> · <a href=\"https://profiles.wordpress.org/pmbs/\">pmbs</a> · <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a> · <a href=\"https://profiles.wordpress.org/poojapadamad/\">poojapadamad</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/prab18hat/\">Prabhat Mishra</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pranjalpratapsingh/\">Pranjal Pratap Singh</a> · <a href=\"https://profiles.wordpress.org/prasadkarmalkar/\">Prasad Karmalkar</a> · <a href=\"https://profiles.wordpress.org/prasadgupte/\">prasadgupte</a> · <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a> · <a href=\"https://profiles.wordpress.org/puggan/\">puggan</a> · <a href=\"https://profiles.wordpress.org/quentinr64600/\">quentinr64600</a> · <a href=\"https://profiles.wordpress.org/r1k0/\">r1k0</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/rafiq91/\">Rafiqul Islam</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">Raluca</a> · <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a> · <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ravichudasama01/\">Ravi Chudasama</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/rcrdortiz/\">rcrdortiz</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves</a> · <a href=\"https://profiles.wordpress.org/renishsurani/\">renishsurani</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/rezwanshiblu1952/\">Rezwan Shiblu</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riadev/\">riadev</a> · <a href=\"https://profiles.wordpress.org/ricjcs/\">Ricardo S.</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rockfire/\">Richard Korthuis</a> · <a href=\"https://profiles.wordpress.org/riddhidave/\">Riddhi Dave</a> · <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a> · <a href=\"https://profiles.wordpress.org/rinkalpagdar/\">Rinkal Pagdar</a> · <a href=\"https://profiles.wordpress.org/rishabhwp/\">Rishabh Gupta</a> · <a href=\"https://profiles.wordpress.org/rishavdutta/\">Rishav Dutta</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/ristojovanovic/\">Risto Jovanovic</a> · <a href=\"https://profiles.wordpress.org/devrito/\">Ritoban</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">Robert Ghetau</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robmcclel/\">Robmcclel</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/roelof/\">roelof</a> · <a href=\"https://profiles.wordpress.org/rollybueno/\">Rolly Bueno</a> · <a href=\"https://profiles.wordpress.org/ronak44/\">Ronak prajapati</a> · <a href=\"https://profiles.wordpress.org/room34/\">Room 34 Creative Services, LLC</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/rotemg/\">Rotem Gelbart</a> · <a href=\"https://profiles.wordpress.org/rayhatron/\">Rufaro Madamombe</a> · <a href=\"https://profiles.wordpress.org/rutvikbhambhi2004/\">Rutvik Bhambhi</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren W&#252;nsch</a> · <a href=\"https://profiles.wordpress.org/sabbir1991/\">Sabbir Ahmed</a> · <a href=\"https://profiles.wordpress.org/devsabbirahmed/\">Sabbir Sam</a> · <a href=\"https://profiles.wordpress.org/sachinrajcp123/\">SACHINRAJ CP</a> · <a href=\"https://profiles.wordpress.org/sahiljadhav1617/\">Sahil Jadhav</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmoon/\">sakibmoon</a> · <a href=\"https://profiles.wordpress.org/samueljseay/\">Sam</a> · <a href=\"https://profiles.wordpress.org/sam_a/\">sam_a</a> · <a href=\"https://profiles.wordpress.org/samirmalpande/\">Samir Malpande</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/sjapaget/\">Samuel Paget</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sandeepdahiya/\">Sandeep Dahiya</a> · <a href=\"https://profiles.wordpress.org/sandipsinh007/\">Sandip Sinh</a> · <a href=\"https://profiles.wordpress.org/ourvalley/\">Sandy McFadden</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a> · <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/saurabhdhariwal/\">saurabh.dhariwal</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a> · <a href=\"https://profiles.wordpress.org/seifradwane/\">Seif Radwane</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shsajalchowdhury/\">SH Sajal Chowdhury</a> · <a href=\"https://profiles.wordpress.org/shadialaghbari/\">Shadi G شادي جـ</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemuir/\">Shane Muirhead</a> · <a href=\"https://profiles.wordpress.org/iamshashank/\">Shashank Jain</a> · <a href=\"https://profiles.wordpress.org/shekh0109/\">Shashank Shekhar</a> · <a href=\"https://profiles.wordpress.org/sajib1223/\">Shazzad Hossain Khan</a> · <a href=\"https://profiles.wordpress.org/designsimply/\">Sheri Grey</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreya0shrivastava/\">Shreya Shrivastava</a> · <a href=\"https://profiles.wordpress.org/iamshubhamsp/\">Shubham Patil</a> · <a href=\"https://profiles.wordpress.org/shyamgadde/\">Shyamsundar Gadde</a> · <a href=\"https://profiles.wordpress.org/sidharthpandita/\">sidharthpandita</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/shilpaashokan94/\">Silpa TA</a> · <a href=\"https://profiles.wordpress.org/simonefontana/\">simonefontana</a> · <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a> · <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a> · <a href=\"https://profiles.wordpress.org/snehapatil02/\">Sneha Patil</a> · <a href=\"https://profiles.wordpress.org/maia12345/\">Sophie Dimitrov</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/soyebsalar01/\">Soyeb Salar</a> · <a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a> · <a href=\"https://profiles.wordpress.org/spielers/\">spielers</a> · <a href=\"https://profiles.wordpress.org/spstrap/\">spstrap</a> · <a href=\"https://profiles.wordpress.org/srikat/\">Sridhar Katakam</a> · <a href=\"https://profiles.wordpress.org/stankea/\">stankea</a> · <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a> · <a href=\"https://profiles.wordpress.org/staurand/\">staurand</a> · <a href=\"https://profiles.wordpress.org/hubersen/\">Stefan Pasch</a> · <a href=\"https://profiles.wordpress.org/stefanvelthuys/\">Stefan Velthuys</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stephenharris/\">Stephen Harris</a> · <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> · <a href=\"https://profiles.wordpress.org/strarsis/\">strarsis</a> · <a href=\"https://profiles.wordpress.org/studiomondiale/\">studio_m</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sujansarkar/\">Sujan Sarkar</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">SunilPrajapati</a> · <a href=\"https://profiles.wordpress.org/sunnykasera/\">sunnykasera</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/supernovia/\">supernovia</a> · <a href=\"https://profiles.wordpress.org/suzukube/\">SuzuKube</a> · <a href=\"https://profiles.wordpress.org/svedish/\">svedish</a> · <a href=\"https://profiles.wordpress.org/lordspace/\">Svetoslav Marinov</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/syhussaini/\">syhussaini</a> · <a href=\"https://profiles.wordpress.org/schwipps/\">T4ng</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takuword/\">Takuro</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tatof/\">tatof</a> · <a href=\"https://profiles.wordpress.org/tecnogaming/\">tecnogaming</a> · <a href=\"https://profiles.wordpress.org/mecaota/\">Tetsuro Higuchi</a> · <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</a> · <a href=\"https://profiles.wordpress.org/tsquez/\">ThemeAWESOME</a> · <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a> · <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kr&#228;ftner</a> · <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a> · <a href=\"https://profiles.wordpress.org/threadi/\">threadi</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a> · <a href=\"https://profiles.wordpress.org/dontfeedthecode/\">Tim Sheehan</a> · <a href=\"https://profiles.wordpress.org/timotijhof/\">Timo Tijhof</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timoth&#233;e Brosille</a> · <a href=\"https://profiles.wordpress.org/timotheemoulin/\">Timoth&#233;e Moulin</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tjarrett/\">TJarrett</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">Tobias B&#228;thge</a> · <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/wpsmith/\">Travis Smith</a> · <a href=\"https://profiles.wordpress.org/traxus/\">traxus</a> · <a href=\"https://profiles.wordpress.org/sllimrovert/\">Trevor Mills</a> · <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/tsteel/\">tsteel</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/tusharbharti/\">Tushar Bharti</a> · <a href=\"https://profiles.wordpress.org/tusharaddweb/\">Tushar Patel</a> · <a href=\"https://profiles.wordpress.org/tussendoor/\">Tussendoor B.V.</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umeshnevase/\">Umesh Nevase</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/unsalkorkmaz/\">Unsal Korkmaz</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/utsavladani/\">Utsav Ladani</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/valentingrenier/\">Valentin Grenier</a> · <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a> · <a href=\"https://profiles.wordpress.org/tsimshatsui/\">Vape tsimshatsui</a> · <a href=\"https://profiles.wordpress.org/vbbp/\">vbbp</a> · <a href=\"https://profiles.wordpress.org/sheldorofazeroth/\">Vedansh Mishra</a> · <a href=\"https://profiles.wordpress.org/vevas/\">Vegard S.</a> · <a href=\"https://profiles.wordpress.org/vgnavada/\">vgnavada</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vidugupta/\">vidugupta</a> · <a href=\"https://profiles.wordpress.org/vijendrajat/\">Vijendra Jat</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vineet2003/\">Vinit</a> · <a href=\"https://profiles.wordpress.org/ghorivipul97/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vipulpatil/\">Vipul Patil</a> · <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> · <a href=\"https://profiles.wordpress.org/vladimiraus/\">vladimiraus</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/walterebert/\">Walter Ebert</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/websupporter/\">websupporter</a> · <a href=\"https://profiles.wordpress.org/webwrotter/\">webwrotter</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/widhy980/\">widhy980</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/wolf45/\">wolf45</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xate/\">xate</a> · <a href=\"https://profiles.wordpress.org/xavilc/\">xavilc</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xipasduarte/\">xipasduarte</a> · <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> · <a href=\"https://profiles.wordpress.org/yashyadav247/\">Yash</a> · <a href=\"https://profiles.wordpress.org/getsyash/\">Yash B</a> · <a href=\"https://profiles.wordpress.org/yashjawale/\">Yash Jawale</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/yogieanamcara/\">YogieAnamCara</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zeelthakkar/\">Zeel Thakkar</a> · <a href=\"https://profiles.wordpress.org/zoe20/\">zoe20</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/lstraczynski/\">Łukasz Strączyński</a> · <a href=\"https://profiles.wordpress.org/haozi/\">耗子</a></p></p>\n\n\n\n<p class=\"wp-block-paragraph\">More than <a href=\"https://translate.wordpress.org/stats/\">71 locales have fully translated</a> WordPress 6.9 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200+ languages.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/forums/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Get involved</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Participation in WordPress goes far beyond coding. And learning more and getting involved is easy.&nbsp; Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19398\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.9 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Nov 2025 15:33:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"6.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:18:\"release candidates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19373\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"The third Release Candidate (“RC3”) for WordPress 6.9 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC3 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Amy Kamala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8652:\"\n<p class=\"wp-block-paragraph\">The third Release Candidate (“RC3”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This version of the WordPress software is under development</strong>. <strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.9 is the highest quality possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 6.9 RC3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"></a><a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-beta2.zip\"></a><a href=\"https://wordpress.org/wordpress-6.9-RC3.zip\">RC3 version (zip)</a>. and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br><code>wp core update --version=6.9-RC3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn85xn\">6.9 WordPress Playground instance</a> to test the software directly in your browser.&nbsp; No setup is required – just click and go!&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC3?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Want to look deeper into the details and technical notes for this release? Take a look at the <a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide\">WordPress 6.9 Field Guide</a>. For technical information related to issues addressed since <a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2\">RC2</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-18&amp;until=2025-11-25\">Gutenberg commits for 6.9</a> since November 18</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F18%2F2025..11%2F24%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed WordPress Core Trac tickets</a> since November 18</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can get involved with the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 6.9 RC3 prerelease is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9. For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta/RC area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general?&nbsp; Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\"></a><a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a>..</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for continuing to test your themes and plugins with the WordPress 6.9 prereleases. If you haven’t yet, please conclude your testing and update the <em>“Tested up to”</em> version in your theme and plugin <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">readme files</a> to <code>6.9</code>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you find compatibility issues, please post detailed information in the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?&nbsp;You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC3 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Some folks make money,</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>some folks make time to travel,</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>and we Make WordPress.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/akshayar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>akshayar</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a>, <a href=\'https://profiles.wordpress.org/ellatrix/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ellatrix</a>, <a href=\'https://profiles.wordpress.org/mobarak/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mobarak</a> <em>and</em> <a href=\'https://profiles.wordpress.org/tacoverdo/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tacoverdo</a> <em>for proofreading and review.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19373\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.9 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Nov 2025 15:26:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"6.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19350\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"The second Release Candidate (“RC2”) for WordPress 6.9 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC2 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Akshaya Rane\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11181:\"\n<p class=\"wp-block-paragraph\">The second Release Candidate (“RC2”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.9 is the best it can be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 6.9 RC2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.9-RC2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn85xn\">6.9 RC2 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC2?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Get a recap of WordPress 6.9’s highlighted features in the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC1, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-11&amp;until=2025-11-18\">GitHub commits for 6.9</a> since November 11</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F11%2F2025..11%2F18%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed Trac tickets</a> since November 11</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/15/notes-feature-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Notes Feature in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Abilities API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/\">WordPress 6.9 Frontend Performance Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/interactivity-apis-client-navigation-improvements-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Interactivity API’s client navigation improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/block-bindings-improvements-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Block Bindings improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/changes-to-the-interactivity-api-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Changes to the Interactivity API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/consistent-cache-keys-for-query-groups-in-wordpress-6-9/\">Consistent Cache Keys for Query Groups in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/11/dataviews-dataform-et-al-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">DataViews, DataForm, et al. in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\" target=\"_blank\" rel=\"noreferrer noopener\">Preparing the Post Editor for Full iframe Integration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Theme.json Border Radius Presets Support in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/heading-block-css-specificity-fix-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Heading Block CSS Specificity Fix in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/miscellaneous-developer-focused-changes-in-6-9/\">Miscellaneous Developer-focused Changes in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/modernizing-utf-8-support-in-wordpress-6-9/\" data-type=\"link\" data-id=\"https://make.wordpress.org/core/2025/11/18/modernizing-utf-8-support-in-wordpress-6-9/\">Modernizing UTF-8 support in WordPress 6.9</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved in testing</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 6.9 RC2 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9. For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report.&nbsp; You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general?&nbsp; Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Update your theme or plugin</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. If you haven’t yet, make sure to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.9.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test on your hosting platforms</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?&nbsp; You can<a href=\"https://translate.wordpress.org/projects/wp/dev/\"> help translate WordPress into more than 100 languages</a>. This release milestone (RC2) also marks the<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> hard string freeze</a> point of the <a href=\"https://make.wordpress.org/core/2025/11/11/wordpress-6-9-release-candidate-phase/\">6.9 release cycle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC2 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\">A calm hillside sighs,<br>Work of many now complete —<br>RC2 stays true.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a> and <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> for proofreading and review.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 04 Feb 2026 17:06:51 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 03 Feb 2026 20:58:54 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}s:5:\"build\";i:1769930872;s:21:\"cache_expiration_time\";i:1770268011;s:23:\"__cache_expiration_time\";i:1770268011;}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1236, '_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1770268011', 'off'),
(1237, '_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1770224811', 'off'),
(1238, '_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1770268011', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1239, '_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: #203 – Miriam Schwab on Elementor’s Decade of Growth and the Future With AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202496\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/podcast/203-miriam-schwab-on-elementors-decade-of-growth-and-the-future-with-ai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56050:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case Elementor&#8217;s decade of growth and its future plans with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Miriam Schwab. Miriam has been deeply immersed in the WordPress ecosystem for around two decades. Starting out offering WordPress as a service, she went on to lead a custom WordPress agency serving major tech companies and nonprofits before founding the startup Strattic, pioneering static WordPress architecture. After Strattic&#8217;s acquisition by Elementor in 2022, Miriam took the role of Head of WordPress acting as the key liaison between Elementor and the wider WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Elementor growth over the last decade has been prolific. Miriam says that it now powers over 13% of the entire web. She gives insights into the challenges and responsibilities that come with maintaining such a large user base, especially around major updates and backwards compatibility.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of our conversation centers around the rise of AI in WordPress, from built in AI tools for generating images and content to the standalone Angie plugin that introduces agentic AI capabilities across WordPress. Miriam outlines Elementor&#8217;s multi-pronged approach to innovation, talking about how their Site Planner tool uses conversational AI to guide beginners and professionals from an idea all the way to a wire framed website. And how the upcoming AI integrations promise even more granular design control.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Miriam also shares her perspectives on how the new Abilities API is set to change what&#8217;s possible inside WordPress, and what this means for developers, designers, and support teams navigating the complexities of AI driven workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For those interested in how AI is shaping the future of WordPress, Elementor&#8217;s strategy, and the evolving role of creators within this ecosystem, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Miriam Schwab.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Miriam Schwab. Hello Miriam.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:23] <strong>Miriam Schwab:</strong> Hi.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:24] <strong>Nathan Wrigley:</strong> Nice to have you with us. Now, dear listener, I have to be very grateful to Miriam because about three weeks ago we tried to capture this exact podcast. In fact, we did. We captured this exact podcast. Unfortunately, the tech failed and Miriam&#8217;s audio was entirely silent. So we had a nice long conversation, Miriam divulged her experience and wisdom, and I got to put it out on the podcast and there was nothing there. It was completely blank. So firstly, an apology for that. And secondly, enormous thanks for coming back and talking to me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:54] <strong>Miriam Schwab:</strong> Well, I have to thank you for giving this another shot because I have a feeling that the technical difficulties were also on my side. So thank you for giving this another go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:03] <strong>Nathan Wrigley:</strong> Yeah, well, I appreciate it. So Miriam has a long and storied history in WordPress. She&#8217;s working with Elementor at the moment, but the story goes back way further than that. Let&#8217;s just do the little potted bio at the beginning, Miriam. Just tell us a, just a short version of who you are in the WordPress space, and what you&#8217;ve achieved in the past.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:20] <strong>Miriam Schwab:</strong> Okay, so about 20 years ago, I discovered WordPress. Loved it, decided to work with it, started offering it as a service. Eventually that expanded into being an agency, and working on custom implementations of WordPress for tech companies and large nonprofits, which was a lot of fun and a great learning experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Did that for about 13 years. Sold the agency and founded a startup based on one of the many ideas I had had over the years. I had many ideas for products over the years, but I knew that I needed to make sure I wasn&#8217;t over spending my abilities, like between family and work and everything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I got to the stage where I was like, okay, I can do this. And I actually really loved the idea. So I founded a startup that was called Strattic. It published WordPress websites in a static architecture while retaining dynamic capabilities. And by doing that, it solved pretty much all the issues related to speed security and scalability. Raised venture capital funding for it, and it was acquired by Elementor in June, 2022.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And after joining Elementor, continued to lead the Strattic team for about six months, and then they offered me this new position that hadn&#8217;t existed before. Initially, we called it the Head of WordPress Relations, and then it evolved to just being called Head of WordPress, where I act as a liaison between Elementor and the broader WordPress community on many levels. Practically, strategically, community, like you name it and I&#8217;m probably doing it. So that&#8217;s a bit about me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:43] <strong>Nathan Wrigley:</strong> Do you have like a job description? Because when you say sort of Head of WordPress, there really seems to be almost no bounds in terms of the WordPress and Elementor connection. Do you have constraints on what is out of bounds? Or is it literally anything that&#8217;s connected with WordPress comes under your purview?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:57] <strong>Miriam Schwab:</strong> It is literally anything, pretty much. It suits me because I was the CEO of two companies, right? I led them. So I have an entrepreneurial character, I guess you could say. And I&#8217;ve always been involved in a lot of aspects of the businesses that I&#8217;ve been running, and I like that. I actually like to be involved in marketing and sales and even the financial side of things, and internal and external and all that kind of stuff. So it allows me to continue to embrace that side of me, even though I&#8217;m now like corporate. And I really appreciate that Elementor allows me that flexibility. It keeps the work that I do very interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:33] <strong>Nathan Wrigley:</strong> Yeah, I&#8217;ll bet. And you&#8217;ve always me as an extremely curious person, who likes to be busy, let&#8217;s put it that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Does Elementor continue to grow? I mean, I guess Elementor for me feels like it&#8217;s coming up to a decade old or something along those lines.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:48] <strong>Miriam Schwab:</strong> Yes, exactly. June is going to be 10 years since it was founded. We&#8217;re in our 10th year now, like heading up to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:53] <strong>Nathan Wrigley:</strong> Yeah, and when it began, the plugin offered an incredibly valuable free version. And this was a real good way of kind of promoting growth because page builders were becoming all the rage at that point, and the market was already becoming saturated. But Elementor managed to put some daylight between themselves and the competitors because of the fully rounded free version. And then obviously, you know, built the pro version on top of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then when you chart the numbers of WordPress&#8217;s growth over the last decade, I don&#8217;t know what the exact numbers are, perhaps you can fill us in on that, but it feels like quite a bit of the WordPress growth, so WordPress generally, that 43% figure that we constantly like to refer to, it feels like quite a bit of that belongs, well, not belongs, but you know what I mean, is because of the popularity of Elementor. So the growth was meteoric. And I don&#8217;t know how that&#8217;s carried on, whether the line continues that trajectory, or whether it&#8217;s kind of flat lined, but still growing. Can we just get into that a bit?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:50] <strong>Miriam Schwab:</strong> After Elementor was launched, it really quickly reached a million active installs, I think within a year or something because it was the right, very much the right product at the right time, bringing a lot of value to users. And like you mentioned, like with the free version, for sure, that definitely helped power its growth and adoption. But also because it was a valuable, and is a valuable product for web builders to use.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In terms of the growth, so amazingly, Elementor&#8217;s adoption continues to grow. So you know W3Techs? Every year they publish like top stuff. And the various categories is based on the absolute number of sites that that particular technology accrued over the course of 2025. For the third year running, Elementor was given the title of Top Content Management System by W3Techs, beating out Wix and Shopify and WordPress. WordPress was the winner for many years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I&#8217;m not privy to the exact numbers or their exact calculations, but based on what they say, if Elementor is the top CMS, it&#8217;s because over the course of 2025, it&#8217;s usage base grew by more websites than those other platforms grew, which is wild. And like there, they even states, I think Elementor started off 2025 with 11.7% of the internet, and ended off 2025 with 13.1% of the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:12] <strong>Nathan Wrigley:</strong> Wait. Do that again.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:13] <strong>Miriam Schwab:</strong> Of the entire web, yes, of the web. Not WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:17] <strong>Nathan Wrigley:</strong> We use the 43% figure to be WordPress. So that same kind of sentence, but substitute Elementor for the word WordPress in there. 13%?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:27] <strong>Miriam Schwab:</strong> Yeah, over 13%. So over the course of 2025, Elementor continued to grow at a very significant pace. So Elementor is still growing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:36] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s remarkable. Do you know if that&#8217;s because of new adoption or is that that the current users of the platform, you know, who have a license for multiple sites and what have you, are just using it more and more, so that number kind of creeps up? So I guess the question there is, do you have a growing user base or is it just more broad use by your current user base?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:54] <strong>Miriam Schwab:</strong> Our current user base definitely contributes to growth, but by our estimation, we grew by something like three and a half million sites over the course of 2025. So a significant number of those sites are new. New users, or new sites, or whatever, that kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:12] <strong>Nathan Wrigley:</strong> What a phenomenal story that, I mean it is the story really inside of the WordPress space over the last decade. I presume there&#8217;s nothing that can touch those kind of stats. That&#8217;s really remarkable. And I suppose it&#8217;s a blessing and also a curse. And what I mean by that is, you&#8217;ve got this giant platform, enormous user base, but I suppose it also means that anything that you do with the Elementor platform, there&#8217;s a lot of care that needs to be taken on every single update. So if you&#8217;re going to update to the 4.0 version, which you recently did, big overhaul, but a big user base to get annoyed if things go wrong. So I guess a lot of care and attention required because of your popularity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:52] <strong>Miriam Schwab:</strong> Yeah. Backwards compatibility, you know, it&#8217;s a very important aspect of WordPress development in general. So at Elementor it&#8217;s the same. It&#8217;s super critical in terms of every update that we push out, determining how far back we&#8217;re going to support things, et cetera. So every version that goes out, it has to be super duper QA&#8217;d.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And even so, you know what WordPress is like, it&#8217;s like the wild west. Every site is like a snowflake. It has its own combination of themes, plugins, server configuration, PHP version, you know what I mean? Like, good luck with that. But the team does an amazing job of really managing to make sure that pretty much every version doesn&#8217;t cause issues.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And with regards to version four, that is an overhaul. And the team, while moving ahead with creating version four, because it&#8217;ll bring a lot of value to our users and it pulls Elementor even more towards the future, it&#8217;s being done so carefully. Like every step is considered.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in terms of how it&#8217;s being developed and also how it&#8217;s going to work in conjunction with the previous approach to Elementor. Because the assumption is, not everyone&#8217;s going to just jump over to version four. Migrating an existing site to version four may be complicated. There&#8217;s discussions around how to do that in the best way, but it may be complicated.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So even an existing site, it might have pages still built on version three and prior, while new pages will be built with version four to gain the benefits of version four. So they have to live side by side for some amount of time. It&#8217;s incredibly complicated, but it&#8217;s a really important, exciting project because, like you said, Elementor is 10 years old, which means a 10-year-old code base. That means it&#8217;s time to give it an overhaul, even with all the risk and complication involved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:32] <strong>Nathan Wrigley:</strong> What&#8217;s the staff count that you&#8217;ve got over there now?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:34] <strong>Miriam Schwab:</strong> It&#8217;s something like 350 now, I think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:37] <strong>Nathan Wrigley:</strong> So enormous. But again, I presume that speaks to the things that you&#8217;ve got to do. You know, if you&#8217;re going to ship a big update, you need a lot of bodies doing the coding for that. But also, you know, checking the backwards compatibility and things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so you mentioned the future. In the year 2025, the words, well, the letters AI, I think probably were said by more people than just about anything else in the English language. Apart from maybe the word the. Everything else seems to have gone AI. If you look in the WordPress space, all of the media, all of the excitement, all of the interest, all of the everything, the oxygen is being sucked out of the room by AI, let&#8217;s put it that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so Elementor, I presume, has to keep up with those current trends. What is happening over there? In terms of the page builder, and also I know there&#8217;s other ancillary products and plugins that, whilst built by you, aren&#8217;t necessarily part of that page building experience. What&#8217;s going on?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:26] <strong>Miriam Schwab:</strong> So we have like a number of approaches to AI and each one is getting a lot of attention. And while users are enthusiastic about them, we&#8217;re trying to figure out where to give them the best experience and how with AI. I think just like the whole world, we&#8217;re also working on figuring out AI and how to implement the best way possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But we strongly believe that WordPress must have strong AI capabilities in order to secure its future. And we want to see WordPress have a strong future for many years to come. But not only that, AI in WordPress will actually give it a big leg up and advantage over the more proprietary platforms in our opinion. So there&#8217;s like intense effort being made on our side to create amazing AI tooling in order to try to secure WordPress&#8217;s feature.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So what do we have? We have the kind of basic obvious stuff, which is, you&#8217;re in Elementor editor, you want to generate an image, here, you can generate an image with AI. You want to create copy, text, add title, all that kind of stuff, the content release stuff, there you go. HTML, CSS, okay. Kind of like check the box, pretty expected stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then we have Angie which is its own standalone plugin, which applies to all of WordPress, not just Elementor. And it gives agentic capabilities to WordPress in general. So whatever you would think an AI assistant would be able to do for you in your WordPress environment, it can pretty much do that. As we know, AI is non-deterministic. You tell it to do something and it will do it one way, and it tells you to do something else and it&#8217;ll do it the other way. So there&#8217;s a lot of guardrails being developed by our team to direct Angie to give the results that the user probably wants.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But you can do things like around managing your site, managing users, creating content, changing categories, WooCommerce management, product management, things like that. So it streamlines a lot of stuff. And the team is working on some like really exciting capabilities, which hopefully will be released soon. And then we&#8217;ll be able to talk about it. But in the meantime, it&#8217;s free to use. Anyone can go into the repo, install it, start using it, and of course we want to hear feedback about that. So that&#8217;s Angie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the third approach with AI is our Site Planner. So Site Planner is a very cool tool. You chat to it, and you chat your way to a very robust website. It&#8217;s not like a one line prompt, build me a flower shop website, and then it just kind of guesses what you might want. It asks you very specific and useful questions so that it can get the fullest picture of what you want to build. And it guides you along the way by asking you the right questions, and then it generates a site for you in Elementor, and then you can export that site into your own hosting environment, or into our hosting environment, or you can download it as a zip file or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the Site Planner can be the first stage in your AI website building journey. It takes you, let&#8217;s say from zero to 80, I would say. And then the last 20% of the site you can do with Angie, you can do manually, you can do with Elementor, you could do not with Elementor. You could do however you want, and launch your site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s pretty much what&#8217;s going on with AI. We have some more stuff coming out soon, but we&#8217;ll talk about it when we can, you know?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:39] <strong>Nathan Wrigley:</strong> Yeah, so let me just reprise that and make sure I&#8217;ve understood. So the first piece of that jigsaw puzzle was the things with inside of Elementor, the page builder itself. And if we rewound the clock just five years, even though you are now saying, oh, the expected stuff, that stuff was the stuff of Star Trek. You know, oh, ask it for an image and it&#8217;ll make an image. Yeah, okay, that seems like a distant future that we&#8217;ll never reach. And yet now that&#8217;s kind of de rigueur. Everybody expects that stuff. So that&#8217;s the stuff inside of the page builder as you&#8217;d expect. Text, images and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then you&#8217;ve got this Angie product, which if I&#8217;m parsing that correctly, enables you to leverage the abilities of WordPress. So I would like you to create me a post and assign these categories to it and publish it on this particular date. Do you know, does that leverage the sort of Abilities API, or have you done the foundational work yourselves as opposed to the Core Abilities API, which the teams have been working on more recently?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:32] <strong>Miriam Schwab:</strong> That&#8217;s a very good question. So the Angie team started building Angie at least a year ago, which was before the Abilities API was, I don&#8217;t know, even a twinkle in someones eye. So the team, in order to make Angie work, built their own tools, like it&#8217;s called tools, exposing WordPress&#8217; capabilities, so actually invested a ton in exposing something like 200 tools in WordPress to Angie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And not only in Angie, the team actually also did some work to expose tools in WooCommerce and ACF as like a starting point for, because they&#8217;re very popular plugins. So when the Abilities API came around, the team already had a lot that was done and also more than what the Abilities API has. The goal is to sync up with the Abilities API and leverage it. At the moment there&#8217;s still some issues, at least on our end using it. But we&#8217;re in constant communication with the WordPress AI teams and giving feedback and things like that. So hopefully we&#8217;ll be able to resolve that. But the team did build all of that themselves, which is pretty amazing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:33] <strong>Nathan Wrigley:</strong> Yeah, that is amazing. But I guess given what Elementor touches, and the fact that you&#8217;ve got that enormous staff there that can try to build that, it kind of made sense to go at that because you didn&#8217;t know that the team were working on the Abilities API. I remember when that dropped. So I&#8217;ve been covering WordPress news for, I don&#8217;t know, a decade or something like that. I remember thinking, this is probably the most consequential piece of news that I&#8217;ve ever covered.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The idea of binding AI, so AI in the scenario that you described first, where I&#8217;m in Elementor, I want an image, I&#8217;m in Elementor, I want some text. That&#8217;s interesting, but it&#8217;s really confined. There&#8217;s lots of boxes around that, there&#8217;s only a certain permutation of things that you can do. But the minute you start to bind an AI to all the things that WordPress can do, so create a user, delete a user, create a page, schedule it for this time. Oh, I don&#8217;t know. Just imagine clicking around inside the WordPress admin interface and wherever you end up, there&#8217;s a thing, there&#8217;s a box or a field to fill out, and there&#8217;s an ability that can be done by that thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And uncovering those and making it so that the AI agent can understand what that is, it&#8217;s very hard to me to encapsulate in English why I think that&#8217;s so impressive. But, do you know what I mean? Can you see the thread of what I&#8217;m trying to say there, how important that is?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:49] <strong>Miriam Schwab:</strong> It is super impressive. What you&#8217;re saying about AI being like, if we had thought about it five years ago, it would be amazing. Even agentic AI, everyone talks about agents as if it&#8217;s like obvious that AI can be agentic. But for quite a bit of time in the beginning, and of course AI years are like a million years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So for the first year and a half or something of us, of the world using AI, something like that, there wasn&#8217;t even agentic AI. So the fact that there&#8217;s agentic AI, and that it can be applied to WordPress is pretty wild. And I&#8217;ll tell you why I also think it&#8217;s wild. Because WordPress is 20 years old, 23 years old, whatever it is at this point. It&#8217;s a legacy platform. And the fact that it can be, the Abilities API is a really smart approach to it because it kind of slackens the exposure of everything that&#8217;s going on behind WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Instead of needing like a million different APIs and different approaches and that every plugin&#8217;s creating their own way to integrate with WordPress. It standardises it in a way that actually is also good for development, but also is good for the AI future, because it means that the way AI will interface with WordPress is straightforward and standard enough that regardless of what the LLMs end up doing going forward, if there&#8217;s more capabilities, if we move beyond agentic to who knows what, I don&#8217;t know what, like implants in our brains, then we can still interface with WordPress even though it&#8217;s over 20 years old. I think that&#8217;s amazing. So kudos to the team for accomplishing that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:12] <strong>Nathan Wrigley:</strong> Yeah, and it was a penny that just didn&#8217;t drop for me. I saw AI as this interesting thing where it could create content, but I didn&#8217;t make the connection with all of the myriad things that WordPress could do. I just thought, okay, it&#8217;ll be inside the block editor, or it&#8217;ll be inside of Elementor or wherever it lives. That&#8217;s where the AI will belong. And then when I first read a summary of what the Abilities API was going to achieve, and that then binds to a whole other layer of APIs surrounding that, that was when the penny dropped. And I thought, okay, so basically what you&#8217;ve done there is you&#8217;ve opened the door and you&#8217;ve said, here&#8217;s all the things that a WordPress website can do. Until now, the AI was just in the interface and you could, you know, words and images and what have you. Now it&#8217;s, okay, we&#8217;ve opened the doors, now you can do the whole range of things that you&#8217;d like to do with the AI. And so it opens up all of those capabilities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Again, the words fail me, but the import of it, the importance of it, I think only time will tell. But it feels like it&#8217;s probably one of the more important things. And again, like you said, 20 year old legacy system, there could have been a moment where the two paths split and, you know, AI became more interesting outside of WordPress, and WordPress sudden decline and what have you. But by opening the doors and saying, actually let&#8217;s just let all of the AI in and you can explore that if you wish to, kind of interesting for those people that want to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:29] <strong>Miriam Schwab:</strong> Yeah, WordPress could have struggled to keep up with AI and we, I&#8217;m not saying it&#8217;s not a struggle. I think we&#8217;re a bit late to the AI game in general as a, like an ecosystem, which is understandable. We&#8217;re open source, things like, you know, move slower and by committee, so that&#8217;s just how it goes. But the fact that it picked itself up, the team was established and within six months of being established or something like that, it already had accomplished their four pillars of work that they had set out for themselves, is really amazing. And it&#8217;s super important for the future of WordPress, and it&#8217;s great to see that they were able to accomplish that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:01] <strong>Nathan Wrigley:</strong> Yeah, and also it feels like the moment has arrived where a lot of the people that write in the WordPress space, so content creators and what have you, they&#8217;ve sort of got this now and they&#8217;re now creating content. And some of the people that no doubt, you and I both follow, who may be writing on their own blog or on social media or what have you, there seems to have been over the last couple of months, a real, a sense that, okay, WordPress has a place. We don&#8217;t need to worry about that anymore. We&#8217;ve now got a path with this AI team. State of the Word AI team sort gathered there and pressed the big red button and all that kind of stuff. There seems to have been so much focus that it&#8217;s built itself into relevance again. And there seems to be less worry. People now writing content about the things that WordPress can do with these abilities bound to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so let&#8217;s move on to the third strand of what you mentioned, which was, forgive me if I get this wrong. You said Site Planner, right? Was that correct?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:51] <strong>Miriam Schwab:</strong> Site planner, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:51] <strong>Nathan Wrigley:</strong> Okay. And this is a conversation that you have. This is something that I always find kind of interesting. You know, getting into a conversation with something which is essentially an AI, that&#8217;s kind of curious. But you mentioned that whole process was a back and forth. So it&#8217;s not, I want a website. You write this great, big, long prompt, click the button, wait for five minutes and kind of cross your fingers and hope for the best. This is more of a dialogue, is it? Where you repeatedly get asked a series of smaller questions, which hopefully then build up to the sort of final thing. Tell us a little bit more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:19] <strong>Miriam Schwab:</strong> The way that works is, yes, you can like paste in some kind of giant prompt, but even then, whether you start with like one sentence or a prompt, the Site Planner will ask you questions, clarifying questions, and also suggestive questions. Do you want any of these types of pages, or content on your site? And things like that. It&#8217;s really good for guiding non-professionals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It then creates actually a brief, like it writes out a brief for your website based on this conversation. So it&#8217;s really good for non-professionals who don&#8217;t know the questions to ask, right? They don&#8217;t know what they should be even considering. So it asks questions for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it&#8217;s also great for professionals. It cuts down a lot of time in the research stage of building a site for a client. And the AI can actually like give them added value in terms of asking questions they might not have thought of. That conversation process can be cut short whenever the user wants. Like it can go on for as long as they want, but they can also say, that&#8217;s enough, let&#8217;s build the site based on what we discussed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When the AI is creating the brief, it will tell you the strength of the brief, like in the top right corner of Site Planner. So once you get to the stage where it says strong brief, you could stop there, but you could keep going. The more information you give it, the better the outcome will be. Just like with AI in general.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So once you finish that conversation, you say, let&#8217;s move to the next stage. It creates a site map. So it shows the hierarchy of the site based on the conversation. But also, on each page it shows you like what type of content it will have, and it actually gives you the content. The nice thing about the way the AI builds the site is that, first of all, content is king, which it always has been on websites. And here you really get to see the strength of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the content that it creates is really good because it&#8217;s based on this conversation that you had with it. At that site map stage you can drag and drop things around, add different pages that it didn&#8217;t include, remove sections from pages, but it&#8217;s just content chunks. Once you are happy with that stage, you go to the next stage, which is the website stage.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We call it the wireframe stage because it&#8217;s not like a fully designed site, it&#8217;s more like the site with a structure, but it&#8217;s like 80% of the way there. It could have like testimonials section, contact page form, gallery. I created a demo site for a cafe that also has community events. So it has an events page. It&#8217;s really great. It like really gets you 80% of the way there. It saves a lot of time, and if you&#8217;re a professional, you can show your client that at that stage and work off of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If anyone works with clients, you know that communicating and getting to a point where everyone&#8217;s happy can be very challenging when you don&#8217;t have something to show. But here, when you have something to show, you get past that blank canvas stage, which is very hard for people to like even imagine anything, and then you can work from there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So once you have the wire frames done, also at that wire frame stage, by the way, you can also there edit things, remove things, et cetera. Change the colour palette, upload a logo to be used across the site, and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then you can publish the site. You can publish it into our own hosting environment in one click, but you can also publish it into any existing Elementor account. You just kind of add your It hooks up to your account and it will send it to wherever that site is hosted. Or you can download and upload it somewhere else. So it gets you from zero to 80, or 90% of the way with a site through a conversation and then you can like tweak it, polish it, and finalise it from there. So it&#8217;s really useful in my opinion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:34] <strong>Nathan Wrigley:</strong> So prior to the publication of it, you mentioned that you could show it to your clients. Is the capacity to have a public facing yet not public facing, if you know what I mean? So a URL, which is visible to you, but not the wider world for SEO and what have you. Is it possible to sort of take an up and running version, give it to a client so that they can have a little bit of a poke around?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:52] <strong>Miriam Schwab:</strong> That&#8217;s an interesting question. At that point, when it&#8217;s still in site planner, I think it&#8217;s only visible to you. So you would have to download and put it somewhere. But then you could put it in like a staging site or wherever you want to put it. You could share your screen with the client. But yeah, I think you can&#8217;t share the URL to that particular project within a third party.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:09] <strong>Nathan Wrigley:</strong> Because that&#8217;s all so very instantaneous compared to, you know, it may be that you get into this dialogue, which takes half an hour or what have you. But, you know, compared to the old way of building things, it&#8217;s more or less instantaneous. I had this notion that a service like that would be kind of interesting if it spat out four or five variations of the same thing at the same time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I realise there&#8217;s a sort of, you know, a burden in terms of technology and overhead and all of that, cPU time and what have you. But the idea of entering that client meeting with five versions of the same basic thing. So, okay, I have a, I don&#8217;t know, a bricks and mortar store and I sell widgets. So I build the one version, but Elementor, for example, in this scenario, builds me four others as well. And then I can go through and cherry pick which bits of this one do you like or, I like the colour scheme of that, if you know what I mean? So I don&#8217;t know if it&#8217;s possible to do that. In other words, is it possible to spin up multiple versions of the same thing, or would you have to sort of start from scratch each time?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:02] <strong>Miriam Schwab:</strong> Well, what you can do within the project is you can ask it to regenerate a section. Like, you could be like, I don&#8217;t like that. So you could say like, do it differently and then it will suggest something else. You could theoretically, I guess like create a second page, let&#8217;s say a second about page and then be like, okay, suggest a different format for me for this. Like a different structure because it&#8217;s not exactly design.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The design afterwards can be worked on with a client or whatever. It&#8217;s more like the structure of the page. So, and even though it&#8217;s a live website, it is like structure. So you could be like, no, I want the testimonials to be a different style, like suggest something else. And then you could show, I guess the customer various pages within the site. It&#8217;s an interesting idea.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I know that the team is working on Site Planner, and it will be more rolled into the WordPress Elementor environment, like in the site. Right now, it&#8217;s an external tool, so once it&#8217;s in there, you could like duplicate pages, you could regenerate pages, things like that. I don&#8217;t have an ETA on when that&#8217;s happening but that&#8217;s the general direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:58] <strong>Nathan Wrigley:</strong> It&#8217;s a fascinating conversation. And the other thing I was going to say is that there&#8217;s obviously, in your community, there&#8217;s a lot of people who are, they have a lot of history of building things with Elementor. They&#8217;ve learned the UI inside and out. They&#8217;ve become experts. They know where every checkbox is. If you show them something in Figma and then give them 10 minutes, they&#8217;ll mimic that perfectly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I was wondering what kind of capabilities the AI has within the Elementor interface. So in other words, does it do a sort of cookie cutter job of creating rows and sections and what have you, based upon things that have already been prebuilt? Or can it, in its AI wire frame stage, can it do, I don&#8217;t know, unique padding or crazy CSS things? Can it get into all of the bits and pieces that Elementor offers, all of those rich experiences? Or is it more kind of, okay, somebody in the team built these testimonial elements, and so we&#8217;re going to basically pick one of those and mimic that onto this wire frame?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:52] <strong>Miriam Schwab:</strong> So there&#8217;s Angie as it exists now and there&#8217;s Angies that will be over the next few months. So I&#8217;m going to be giving like, I guess kind of a sneak preview into what&#8217;s coming.</p>\n\n\n\n<p class=\"wp-block-paragraph\">At the moment it can do a lot within Elementor, but it is kind of constrained within what Elementor classically does. However, v4 is going to enable the AI, or let&#8217;s say the v4 AI partnership will give it a lot more creative capabilities, and extend basically to whatever you want it to do, that you can do with Angie. From custom code snippets, to custom widgets, to custom anything, or working within the Elementor. There&#8217;s going to be a lot of interesting things that people can do, basically in some ways just limited by their creative ideas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:38] <strong>Nathan Wrigley:</strong> Right, so much more granular. Because I have this vision that at some point in the future, and maybe some tool out there can do this. But I have this vision that, let&#8217;s say you&#8217;re inside Elementor, you&#8217;ve got 99% of the way there, and then you suddenly realise that that picture of the cat is the wrong cat. And so you just sort of say, can we have a different cat? No, not that one. Okay, that cat. And now, could we make the borders rounder on that particular image and give it a bit of a box shadow? That would be nice. Oh, and then swap it around so the text is on the other side.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you end up in this sort of dialogue, almost like you&#8217;re chatting to the designer and you are watching over their shoulder as they build it. That seems to be the kind of place where we would love to get to. And then of course we enter this curious, difficult moment for the web developers and web designers, where these things become so dreadfully straightforward and easy that we then have to start questioning, how do you offer this as a client service if almost everybody can speak to a website and get it to do whatever you would like it to do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there&#8217;s two things in there. I sort of smuggled the last one in. But the first one is this sort of dialogue with the website, and then the second one is whether or not these tools are making it more difficult to be in the industry that we all love so much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:44] <strong>Miriam Schwab:</strong> With regards to the dialogue description, so AI in general, it&#8217;s become like our team members for certain things. You know, in the past, if I wanted to, let&#8217;s say, post something on social media on behalf of Elementor, I would go to the design team and ask them to design something and go through that process, and then get what they gave me and then post it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now my design team is Nano Banana, right? Or ChatGPT. I get two versions, they compete against each other. Whichever one works best for me is what I take. And so it&#8217;s like that in almost everything we do if we&#8217;re using AI, and also in the world of website creation, design, development, and management. Our team for many aspects of it will become AI, which will create greater efficiency and also it seems like greater redundancy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think like anything with a tool, the results will be defined by the abilities and skills of the person directing it. AI needs direction and that conversation to happen. And the quality of the results will be dependent on the skillset of the user, not skillset in terms of, how do I get AI to do stuff? But skillset of, what should an excellent website be?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the human in the loop, I think, will continue to be a very important part. It&#8217;s just we&#8217;re kicking the can down the road kind of thing in terms of where we bring value. So instead of us bringing value, sitting and clicking on an image and changing the background using Photoshop, our value will be in being the director and producer of what output we want it to have and getting it there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we&#8217;re not like the tinkerers and like the hammer or nail people, we&#8217;re the contractor or the strategist, or the blueprint creators. So the conversations will take place, but the human in the loop part will still be really important. We all, whether we&#8217;re web creators or whatever profession we have, have to figure out how to use AI to help us do what we&#8217;re doing better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I actually don&#8217;t exactly agree with the idea that AI helps us do more. It does, a lot of things become faster, but I think the value is that a lot of things get done better and a higher quality. So there&#8217;s that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So how do we use AI to the best of our abilities to help us do our work even better. But also, how do we continue to provide value in a world that&#8217;s dominated by AI? And that&#8217;s like, I don&#8217;t know what the answers are. 2026 is going to be the year of, who knows? Because AI changes every second. They could invent a new model or release a new model tomorrow that changes this whole conversation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:19] <strong>Nathan Wrigley:</strong> One of the things that, sort of round it off with this one maybe. I&#8217;m thinking about your support system. So your support system, which has built up over 10 years, and presumably worked to help your clients. But the clients themselves probably started with a blank canvas and then, you know, made mistakes along the way, but were able to describe the mistakes that they made along the way to your support agents. Like, okay, I was doing this and then something went wrong. Can you unpick that for me? Where did I go wrong?</p>\n\n\n\n<p class=\"wp-block-paragraph\">The realignment that needs to take place for your support team with the advent of AI, I suppose is fairly profound because you&#8217;ll probably have a lot of users who will just know that they did a prompt. And now this thing happened and I didn&#8217;t want that thing to happen. How do I go back? I mean there&#8217;s obviously a case of click undo, or don&#8217;t save the changes or whatever. But I&#8217;m also imagining the support that you provide has to pivot a lot as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:06] <strong>Miriam Schwab:</strong> The development of AI has to include implementing a ton of guardrails to prevent users from doing things that can damage their site. I&#8217;ll give you an example. In the early days of Angie, I generally love pushing tools to their limits, so I was pushing Angie to its limit and I got it to kick me out of my own site and remove my user. And I was like, well that&#8217;s not cool. So guardrails were put in place around that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s concepts of, first of all, not allowing a user to implement something until they&#8217;re sure. Like meaning, not just be like, hey AI, can you do this? And the AI is like, done. No. AI is like, okay, here&#8217;s what it will look like, here&#8217;s what it will do, that kind of thing. Do you want to go ahead? Then, of course, undo buttons.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then even with all of that, yeah, support could be different. We can have logs and things like that about what happened and why it happened and things like that. And that can help troubleshoot things. But on the other hand, I think support can become much better because while still the human is in the loop, getting the answers to issues, you know, you end up with this huge knowledge base of stuff, and a support agent can only know so much. Our brains are finite. We don&#8217;t know what someone discovered yesterday as an issue and as a solution and all that kind of stuff. So once you have AI kind of like analysing your corpus of knowledge and then pulling out what can help you or the user, then that becomes much better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;ll give you another interesting angle of where support becomes complicated, where you have the Abilities API, or Angie or both, and a user is interacting with Angie, let&#8217;s say, and Elementor and also a third party plugin that is also working with AI. And then there&#8217;s something borks. And then the user is like, was it Elementor that was a problem? Was it WordPress that was a problem? Was it this third party plugin that was a problem? How do I even ask for support when I don&#8217;t know what just caused that issue? I guess it&#8217;s another version of plugin conflicts, but it&#8217;s just taking it to another level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:01] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s a different level altogether. I said that was my final question. Turns out I was being insincere. I have one more. And that is, I know that Elementor has done a lot of work trying to make websites more accessible in the recent past. And so that&#8217;s the final question, I promise. The idea that we hand over the agency of this to our AI builder and so things like accessibility, there may be other things that we could smuggle in there as well, but we&#8217;ll go with accessibility. Is work being done to ensure that the output follows WCAG guidelines and things along those lines?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:32] <strong>Miriam Schwab:</strong> So something that I&#8217;ve seen as we&#8217;re working on implementing AI capabilities is that there&#8217;s this idea that I had, and I think others do as well, that AI is the all powerful whatever. And if you just say to it, make my site accessible, it will make my site accessible. So it turns out it&#8217;s not like that. Maybe one day it will be. But AI needs tools, needs direction, needs the capabilities, and it doesn&#8217;t just have it just because it&#8217;s AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s kind of the same with accessibility. So actually Elementor created an accessibility plugin called Ally, which is very useful because it goes through the website, analyses it, tells you where there&#8217;s issues, but doesn&#8217;t just tell you where there is issues, it gives you solutions. And it can, with AI, implement those solutions. Like you can click and be like, fix that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that kind of ongoing accessibility assistance means that a person can, first of all do like a once through of their site and bring it to a better level of accessibility. We don&#8217;t guarantee like 100% accessibility, I don&#8217;t know if anyone can, but it improves accessibility on many levels.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then as you&#8217;re going along, it can keep an eye on things or you can like trigger it and it can help make sure that whatever you&#8217;re doing going forward also stays within accessibility guidelines. So it&#8217;s like a really useful assistant, slash solution, slash tool that users can implement on an ongoing basis with their site. So worth checking out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:59] <strong>Nathan Wrigley:</strong> Yeah, I&#8217;ll put that into the show notes as well. And if memory serves, I could be wrong about this, if memory serves it&#8217;s not an Elementor specific solution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:06] <strong>Miriam Schwab:</strong> Oh, right, exactly. It&#8217;s for all sites, all WordPress sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:08] <strong>Nathan Wrigley:</strong> So any WordPress website can benefit from that. Okay, that&#8217;s interesting. Okay, so who knows what the year 2026 will bring. It no doubt will be chaos, turmoil.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:18] <strong>Miriam Schwab:</strong> It won&#8217;t be boring.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:19] <strong>Nathan Wrigley:</strong> That&#8217;s the words. Yeah, it definitely won&#8217;t be boring. And, yeah, good luck for Elementor in the year 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:26] <strong>Miriam Schwab:</strong> Thank you. I&#8217;m excited, by the way, for 2026. It&#8217;s like a whole new world, and I think in some ways, at least for me, and I see this with others, it like reignited a spark for innovation in WordPress. WordPress is amazing, it&#8217;s been amazing for over 20 years and we&#8217;ve always, you know, been seeking, looking for ways to innovate. But AI takes it to a whole other level and makes innovation more accessible, if we&#8217;re going to use that word. And it&#8217;s really fun to see what people are creating around AI for WordPress. And I think we&#8217;re going to see some amazing things released over the course of 2026, not just by Elementor, that will make WordPress, wow. Anyways, that&#8217;s just my thoughts about 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:00] <strong>Nathan Wrigley:</strong> Miriam Schwab, thank you for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:02] <strong>Miriam Schwab:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://profiles.wordpress.org/illuminea/\">Miriam Schwab</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Miriam has been deeply immersed in the WordPress ecosystem for around two decades. Starting out offering WordPress as a service, she went on to lead a custom WordPress agency serving major tech companies and nonprofits, before founding the startup Strattic, pioneering static WordPress architecture. After Strattic’s acquisition by Elementor in 2022, Miriam took on the role of Head of WordPress, acting as the key liaison between Elementor and the wider WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Elementor’s growth over the last decade has been prolific. Miriam says that it now powers over 13% of the entire web. She gives insights into the challenges and responsibilities that come with maintaining such a large user base, especially around major updates and backwards compatibility.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of our conversation centres around the rise of AI in WordPress. From built-in AI tools for generating images and content, to the stand-alone Angie plugin that introduces agentic AI capabilities across WordPress. Miriam outlines Elementor’s multi-pronged approach to innovation, talking about how their Site Planner tool uses conversational AI to guide beginners and professionals from an idea all the way to a wireframed website, and how the upcoming AI integrations promise even more granular design control.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Miriam also shares her perspective on how the new Abilities API is set to change what’s possible inside WordPress, and what this means for developers, designers, and support teams navigating the complexities of AI-driven workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For those interested in how AI is shaping the future of WordPress, Elementor’s strategy, and the evolving roles of creators within this ecosystem, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://elementor.com\">Elementor</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://elementor.com/blog/elementor-acquires-strattic/\">Elementor Acquires Strattic To Redefine WordPress Hosting</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://w3techs.com\">W3Tech</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://elementor.com/products/angie-ai-for-wordpress/\">Angie plugin</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://developer.wordpress.org/apis/abilities-api/\">Abilities API</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://elementor.com/products/ally-web-accessibility/\">Ally plugin</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Feb 2026 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Open Channels FM: Navigating Tech Shifts, Expanding Your Developer Toolkit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=115049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://openchannels.fm/navigating-tech-shifts-expanding-your-developer-toolkit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"Zach Stepek and Carl Alexander discuss winter challenges, work-life balance, and AI’s impact on coding. They emphasize the importance of diversifying skills and adapting to tech changes for career longevity.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Feb 2026 13:14:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Open Channels FM: Tech Predictions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114894\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://openchannels.fm/tech-predictions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"For content creators, it\'s murky waters that many wade into.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Feb 2026 09:05:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 6.9.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2026/02/wordpress-6-9-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9407:\"<p class=\"wp-block-paragraph\"><strong>WordPress 6.9.1 is now available!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">This minor release includes fixes for 49 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&amp;milestone=6.9.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">throughout Core</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/74806\">the Block Editor</a>, addressing issues affecting multiple areas of WordPress including the block editor, mail, and classic themes. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2026/01/30/wordpress-6-9-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9.1 is a short-cycle maintenance release. The next major version of WordPress will be 7.0; it is scheduled for release on 9 April 2026 at <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.1.zip\">download WordPress 6.9.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-9-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> and <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 6.9.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/acmoifr\">acmoifr</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/oztaser\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/albigdd\">Alexander Bigga</a>, <a href=\"https://profiles.wordpress.org/amanandhishoe\">amanandhishoe</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/brumack\">brumack</a>, <a href=\"https://profiles.wordpress.org/darerodz\">David Arenas</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/raftaar1191\">Deepak Gupta</a>, <a href=\"https://profiles.wordpress.org/deepakprajapati\">Deepak Prajapati</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/digitalblanket\">digitalblanket</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">Fabian Kaegy</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/jdeep\">Jaydeep Das</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/maverick3x6\">Jeff Golenski</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jhtjards\">jhtjards</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/karthickmurugan\">Karthick</a>, <a href=\"https://profiles.wordpress.org/solankisoftware\">Kirtikumar Solanki</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/luisherranz\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/madhavishah01\">Madhavi Shah</a>, <a href=\"https://profiles.wordpress.org/sirlouen\">Manuel Camargo</a>, <a href=\"https://profiles.wordpress.org/jillro\">Maud Royer</a>, <a href=\"https://profiles.wordpress.org/mehrazmorshed\">Mehraz Morshed</a>, <a href=\"https://profiles.wordpress.org/monarobase\">Monarobase</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/muryam\">Muryam Sultana</a>, <a href=\"https://profiles.wordpress.org/mydesign78\">mydesign78</a>, <a href=\"https://profiles.wordpress.org/narenin\">Narendra Sishodiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/oglekler\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/gabertronic\">Ophelia Rose</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/vybiral\">Pavel Vybíral</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pmbs\">pmbs</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/r1k0\">r1k0</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/ricjcs\">Ricardo S.</a>, <a href=\"https://profiles.wordpress.org/rollybueno\">Rolly Bueno</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sajib1223\">Shazzad Hossain Khan</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/soyebsalar01\">Soyeb Salar</a>, <a href=\"https://profiles.wordpress.org/spielers\">spielers</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/studiomondiale\">studio_m</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">Tobias Bäthge</a>, <a href=\"https://profiles.wordpress.org/shimotomoki\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/umeshsinghin\">Umesh Singh</a>, <a href=\"https://profiles.wordpress.org/twvania\">Vania</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/wolf45\">wolf45</a>, <a href=\"https://profiles.wordpress.org/zoe20\">zoe20</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/audrasjb/\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/davidbaumwald/\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/westonruter/\"><span class=\"mentions-prefix\">@</span>westonruter</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/jeffpaul/\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/presskopp/\"><span class=\"mentions-prefix\">@</span>presskopp</a><em> for proofreading.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Feb 2026 18:07:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Jonathan Desrosiers: Offering Criticism in Open Source Projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://jonathandesrosiers.com/?p=9966\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://jonathandesrosiers.com/2026/02/offering-criticism-in-open-source-projects/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:32055:\"<p class=\"\">A <a href=\"https://crossword.fm/s10/e10/\">recent episode</a> of the <a href=\"https://crossword.fm/\">Crossword podcast</a> had me thinking about offering criticism constructively in open source projects. <a href=\"https://jonathanwold.com/\">Jonathan Wold</a> and <a href=\"https://carb.is/\">Luke Carbis</a> were discussing the <a href=\"https://wordpress.org/download/releases/6-9/\">new Notes feature in WordPress 6.9</a>, which was added as a building block for real-time collaboration.</p>\n\n\n\n<p class=\"\">Luke mentioned how he was curious about the reasoning behind the related technical decisions. He was having some difficulties and was a bit concerned about the choice to use the preexisting Comments APIs with a new comment type to build out the Notes feature. The part of this conversation that I really found interesting was when they discussed how it was unfair to the contributors who did work on the feature for him to complain or criticize without knowing the full background of why it was built in the way that it was.</p>\n\n\n\n<p class=\"\">I&#8217;ve heavily condensed and paraphrased, so I definitely recommend giving the episode a full listen.</p>\n\n\n\n<figure class=\"wp-embed-aspect-21-9 wp-has-aspect-ratio wp-block-embed is-type-rich is-provider-spotify wp-block-embed-spotify\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p class=\"\">This premise stuck with me and sent me down several rabbit holes, each one leading to a different dynamic within open source communities. When is it acceptable to be critical in open source? Is it fair to offer criticism when you don&#8217;t have all of the information? If so, what is the right way to go about sharing? Who is allowed to criticize? When is it appropriate to solely observe rather than attempt to participate? How do you transition from an observer to a participant? Let&#8217;s dig into these questions a bit more.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-who-can-contribute\">Who Can Contribute?</h2>\n\n\n\n<p class=\"\">The simple answer to this question is anyone and everyone, of course! It is open source after all! But don’t stop reading because it’s not <em>actually</em> that simple.</p>\n\n\n\n<p class=\"\">While everyone <em>can</em> participate, there are so many forces at play that impact <em>how</em> you should contribute. Knowing what these are, understanding them, and being able to recognize them can help make your open source journey a more successful and rewarding one.</p>\n\n\n\n<p class=\"\">I won&#8217;t be covering contributing from the perspective of specific disciplines (ie. code, documentation, testing, etc.), or even different ways of contributing (ie. financial, time-based, etc.). Instead I&#8217;m looking to define two broad &#8220;states&#8221; of contributing, how to move back and forth between these two groups, and how to communicate better so that everyone feels welcome to contribute.</p>\n\n\n\n<p class=\"\">First let&#8217;s establish what these two groups of contributors are.</p>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"An empty auditorium in a university is furnished with wooden chairs that have blue cushions. The chairs are neatly arranged in rows, facing a stage or a podium that is not visible in the frame. The room is empty of people, and the lighting is relatively bright, daytime or artificial lighting. The overall atmosphere of the scene is academy.\" class=\"wp-image-10599 not-transparent\" height=\"3333\" src=\"https://jonathandesrosiers.com/wp-content/uploads/2026/02/570645e40a6435bc2.81819652.jpg\" width=\"5000\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button><figcaption class=\"wp-element-caption\"><a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/570645e40a/\">photo</a> by <a href=\"https://blazejzablotny.pl/\">Blazej Zablotny</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-passive-contributing\">Passive Contributing</h2>\n\n\n\n<p class=\"\">Whether they know it or not, every single user and consumer of an open source project contributes back in some way.</p>\n\n\n\n<p class=\"\">When you use a piece of software (whether it’s open source or not), you are using your voice (and in some cases, your wallet) to communicate that the software is valuable to you. “This piece of software solves a problem that I have.” Over time, continued usage turns into a second layer of feedback. “This piece of software continues to solve a problem that I have well enough to continue using it.”</p>\n\n\n\n<p class=\"\">I like to think of this as &#8220;passive contributing&#8221; because it happens naturally through the normal use of software without any additional level of effort required. The examples I gave above are the most simple and pure examples of passive contribution and may not seem that useful. But passive contributions can be quite significant at scale.</p>\n\n\n\n<p class=\"\">Every WordPress site checks if there are available updates for plugins, themes, and Core itself every 12 hours. However, a few details are needed to ensure an accurate answer is given, such as the version of WordPress the site is currently running, the site&#8217;s PHP and database versions, the PHP extensions loaded, etc..</p>\n\n\n\n<p class=\"\">Now consider this happening across tens of millions of WordPress sites. This becomes <a href=\"https://en.wikipedia.org/wiki/Observability_(software)#Telemetry_types\">metric-based telemetry</a> and the data helps paint a <a href=\"https://wordpress.org/about/stats/\">larger picture of what the &#8220;typical&#8221; environment is for a WordPress site</a>. This data allows contributors to make well-informed decisions about the software itself. What should the <a href=\"https://make.wordpress.org/core/2026/01/09/dropping-support-for-php-7-2-and-7-3/\">minimum required version of PHP be</a>? Should a <a href=\"https://make.wordpress.org/core/2019/10/15/php-native-json-extension-now-required/\">native PHP extension be required to run WordPress</a>?</p>\n\n\n\n<p class=\"\">Understanding the actual real-world state is essential before making certain changes, especially in a project so staunchly committed to backward compatibility such as WordPress.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-untapped-potential\">Untapped Potential</h3>\n\n\n\n<p class=\"\">In many ways, this group is the most exciting one in open source. There is so much potential to tap into! One thing that I&#8217;ve learned is that you never know what will inspire someone or how they will discover contributing. This is just one compelling reason to <a href=\"https://producingoss.com/en/producingoss.html#be-open-from-day-one\">underscore the importance of working in the open</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<blockquote class=\"wp-block-quote alignwide has-text-align-center is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"is-style-text-title is-style-text-title--1\">&#8220;Each interaction with a user is an opportunity to get a new participant.&#8221;</p>\n\n\n\n<p class=\"\"><a href=\"https://producingoss.com/en/managing-participants.html#users-to-participants\">Producing Open Source Software</a> &#8211; Carl Fogel</p>\n</blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"\">As maintainers of open source, we need to consider this group as much as possible. Since most passive contributors are simply users, the <a href=\"https://wordpress.org/about/philosophy/\">user-focused philosophies</a> of the WordPress project help to keep this group front of mind.</p>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"A man in a white shirt and black backpack leans against a chrome railing inside a building while looking at his phone. The man appears relaxed, with his weight resting on one leg and his other foot crossed over it. He holds the phone in one hand and seems to be scrolling through its contents.\" class=\"wp-image-10597 not-transparent\" height=\"4128\" src=\"https://jonathandesrosiers.com/wp-content/uploads/2026/02/53645e3e76c13ed0.89060804.jpg\" width=\"6192\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button><figcaption class=\"wp-element-caption\"><a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/53645e3e76/\">photo</a> by <a href=\"https://blazejzablotny.pl/\">Blazej Zablotny</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-active-contributing\">Active Contributing</h2>\n\n\n\n<p class=\"\">Conversely, if someone contributes to an open source project knowingly, they fall into the second type: active. These contributors are the backbone of every open source software project. They&#8217;re intentionally spending their time filing bug reports, building out new features and APIs, reviewing patches, translating strings, writing documentation, and so much more.</p>\n\n\n\n<p class=\"\">In an ideal world, many more passive contributors are activated than the number of active ones who leave a project to ensure growth. But be warned, if you&#8217;re ill-prepared to support newly activated contributors, they can <a href=\"https://jonathandesrosiers.com/2025/07/the-ghosts-of-unactivated-contributors/\">easily become ghosts that quietly haunt the halls of your project</a>.</p>\n\n\n\n<hr class=\"is-style-default wp-block-separator alignwide has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-some-additional-considerations\">Some Additional Considerations</h2>\n\n\n\n<p class=\"\">I tried to clearly define these two buckets to encompass everyone. But like the question of &#8220;who can contribute?&#8221;, there is additional nuance to be aware of.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-awareness-of-passivity\">Awareness Of Passivity</h3>\n\n\n\n<p class=\"\">One important thing to note is that individuals may not even be aware of the fact that they are passively contributing. Some (likely most) have no idea about what contributing is or how it works. In other cases, someone can be aware and intentionally choose to remain passive.</p>\n\n\n\n<p class=\"\">This was the case with Luke and the concerns he expressed about the implementation of the Notes feature. He is familiar enough with open source communities to understand that <a href=\"https://maintaine.rs/desrosj#the-value-of-presence\">decisions are made by those who show up</a>, but was also self-aware enough to recognize he was not properly prepared to engage. He intentionally chose to remain passive until he felt he had enough context to engage thoughtfully (which <a href=\"https://core.trac.wordpress.org/ticket/64377\">he has since</a>).</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<blockquote class=\"wp-block-quote alignwide has-text-align-center is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"\">By participating in discussions, contributing code, submitting bug reports or feature requests, or testing proposed changes, any individual can influence the direction of an Open Source project. By showing up, you ensure that your voice will be heard. But be aware, with presence comes responsibility. Showing up means being prepared, doing research, actively listening, and being thoughtful in your communication.</p>\n\n\n\n<p class=\"\"><a href=\"https://maintaine.rs/desrosj#the-value-of-presence\">Maintainers in the WordPress Project</a> &#8211; <a href=\"https://maintaine.rs/\">maintaine.rs</a> &#8211; Jonathan Desrosiers</p>\n</blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"\">As contributors gain experience, they&#8217;re often active in some ways and passive in others. For example, someone who spends their time creating patches is still contributing by passing the PHP version their site is using when sending update requests. Contributors also tend to find the areas of a code base that they enjoy working the most and to focus their efforts there. When this happens they choose to be passive for the rest of the code.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-transitioning-unknowingly\">Transitioning Unknowingly</h3>\n\n\n\n<p class=\"\">It&#8217;s also common for someone to be completely unaware of the fact that they have &#8220;activated&#8221;. Let&#8217;s say you are experiencing a problem with your site and open a support ticket. On the surface it may seem like you are just seeking help with the issue that&#8217;s affecting your site. But it&#8217;s actually pretty common that support requests are the first sign of a larger bug or edge case affecting many users.</p>\n\n\n\n<p class=\"\">This is a great opportunity to help them recognize that they&#8217;re contributing. &#8220;Thank you for taking the time to create this report!&#8221; Be transparent about the process and answer any questions they have. Where can they follow along with the process? What is the process? And continue to engage with this person throughout the lifecycle of the report.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">&#8220;This seems to be due to X and as a result Y happens.&#8221; &#8211; Explain the concept behind what&#8217;s going on to pique their interest.</li>\n\n\n\n<li class=\"\">&#8220;It&#8217;s likely that any site using feature Z is experiencing this.&#8221; &#8211; Shows them the importance of their report. It&#8217;s not just you, and you&#8217;ve helped the software improve for many other users.</li>\n\n\n\n<li class=\"\">&#8220;There is a fix available in the form of a patch/hotfix plugin/nightly build. Would you be able to test using that to confirm the issue is resolved for you?&#8221; &#8211; Bring them along on the journey and show them how the sausage is made.</li>\n\n\n\n<li class=\"\">&#8220;Thanks again for the report and helping to improve PROJECT.&#8221;  &#8211; Their time was valuable and the result was meaningful.</li>\n</ul>\n\n\n\n<p class=\"\">If you spend any time talking to contributors, you&#8217;ll find that this is a <em>very</em> common path for discovering how to contribute to open source. Make this second nature and weave it into the culture of your project to ensure that no opportunity to grow the contributor base is missed.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-a-healthy-balance\">A Healthy Balance</h3>\n\n\n\n<p class=\"\">Even when maintainers have invested a considerable amount of time and effort into creating forms of passive contribution, <strong>passive contribution has a very low ceiling and will never sustain a project by itself</strong>.</p>\n\n\n\n<p class=\"\">In education there is a metric called the <a href=\"https://en.wikipedia.org/wiki/Student%E2%80%93teacher_ratio\">student-teacher ratio</a>, which is a way to estimate the number of students per teacher in each classroom within a school. Though it doesn&#8217;t always work out this way, the idea is that a lower student-teacher ratio will result in a higher quality education.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<blockquote class=\"wp-block-quote alignwide has-text-align-center is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"\">Classes with too many students are often disruptive to education. Also, too many students in a class results in a diverse field of students, with varying degrees of learning ability. Consequently, the class will spend time for less academic students to assimilate the information, when that time could be better spent progressing through the curriculum. In this way, student–teacher ratios are compelling arguments for advanced or honors classes.</p>\n\n\n\n<p class=\"\"><a href=\"https://en.wikipedia.org/wiki/Student%E2%80%93teacher_ratio\">Student-teacher ratio &#8211; Wikipedia</a></p>\n</blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"\">There are several variations of this concept at play within open source.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">The ratio of users to contributors.</li>\n\n\n\n<li class=\"\">The ratio of active to passive contributors.</li>\n\n\n\n<li class=\"\">The ratio of active contributors to those <em>trying</em> to become more involved (seeking mentorship).</li>\n\n\n\n<li class=\"\">The ratio of mentors who are actually <em>available</em> to those seeking to be mentored.</li>\n\n\n\n<li class=\"\">The ratio of contributors who have write access (Core Committers) to those who don&#8217;t.</li>\n</ul>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"Rockhounding and colorful rocks on a southern Oregon beach.\" class=\"wp-image-10601 not-transparent\" height=\"576\" src=\"https://jonathandesrosiers.com/wp-content/uploads/2026/02/41964067404569fe1.10957269-1024x576.jpg\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button><figcaption class=\"wp-element-caption\"><a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/4196406740/\">photo</a> by <a href=\"https://jenniferbourn.com/\">Jennifer Bourn</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</figcaption></figure>\n\n\n\n<p class=\"\">Each of these ratios could help shine a light on an area of a project that is struggling. Just like there&#8217;s no widely accepted student-teacher ratio that every school should strive for, there&#8217;s no one-size-fits-all formula for the ideal ratio of each of these. It&#8217;s safe to say that the actual ratio is often nowhere close to an appropriate level. Unfortunately, this often results in maintainer burnout.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-equal-opportunity-vs-equal-outcome\">Equal Opportunity vs. Equal Outcome</h3>\n\n\n\n<p class=\"\">Open source is at its best when opportunity is equal, but not necessarily contributions or outcomes. Every contribution is different, and that’s a <em>good</em> thing. But when everyone has the same opportunity to contribute, the number of participants will increase along with the diversity of experience, knowledge, and thought. This will naturally result in better solutions.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<blockquote class=\"wp-block-quote alignwide has-text-align-center is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"is-style-text-title is-style-text-title--2\">“Given enough eyeballs, all bugs are shallow.”</p>\n\n\n\n<p class=\"\"><a href=\"https://en.wikipedia.org/wiki/Linus%27s_law\">Linus&#8217;s Law</a></p>\n</blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"\">I understand that a state of true equity of opportunity is utopian. There will always be differences in socioeconomic, cultural, familial situations, etc. But as maintainers, we need to remain vigilant to ensure everyone has the opportunity they deserve. After all, that&#8217;s what open source is all about: a chance to participate.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-encouraging-a-fluid-state\">Encouraging A Fluid State</h3>\n\n\n\n<p class=\"\"><a href=\"https://www.selectsoftwarereviews.com/blog/employee-retention-statistics#strongstatistics-on-the-cost-of-employee-turnoverstrong\">Many studies have found</a> that the cost of replacing an employee could cost upwards of 300% <em>more</em> than the previous employee&#8217;s salary. This includes the cost to terminate the employee, recruitment, hiring, on-boarding, lost opportunity while the position is vacant, and the loss of productivity as the new hire goes through a learning curve.</p>\n\n\n\n<p class=\"\">Consider this concept in the context of open source. The majority of OSS projects barely have enough resources to keep things running smoothly. Dealing with a 300% cost increase can be very detrimental, if not lethal, to the overall health of the project. It&#8217;s in everyone&#8217;s best interest to retain active contributors instead of dealing with the high costs of finding and training new contributors.</p>\n\n\n\n<p class=\"\">Allowing, encouraging, and respecting when contributors ebb and flow between an active and passive state is one way to help lower the risk of someone churning out of your project completely. Yes, they are not actively contributing when choosing to be passive. But when they feel entrusted to adjust their contributing patterns any time they need or want to, they still feel like part of the project. They are capable and knowledgeable enough to return anytime they choose, and that is much easier than a brand new contributor starting from scratch.</p>\n\n\n\n<p class=\"\">That&#8217;s not to say all on-boarding is bad! It&#8217;s usually a <em>good</em> sign when new contributors are joining a project. But it&#8217;s a concerning signal when it&#8217;s consistently a net-negative, or even a net-neutral pattern.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-non-human-contribution\">Non-human Contribution</h3>\n\n\n\n<p class=\"\">Though there&#8217;s no human requirement to contribute, <a href=\"https://jonathandesrosiers.com/2025/07/implementing-ai-in-open-source-without-losing-the-human-touch/\">open source communities flourish because of community and strong human connections</a>. Right now, AI is a passive <em>consumer</em> of software (or at least the documentation and other related materials). But since AI tools don&#8217;t actually <em>use</em> the software, they bypass passive contribution and <a href=\"https://dri.es/ai-is-a-business-model-stress-test\">exclusively extract value in a one-way transaction</a>.</p>\n\n\n\n<p class=\"\">I also think it&#8217;s fair to say AI tools cannot actively contribute on their own. They require a human to make use of them while actively contributing. That said, these tools have the potential to amplify someone’s abilities and capacity. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-a-note-about-makers-and-takers\">A Note About Makers And Takers</h3>\n\n\n\n<p class=\"\">A disproportionate number of passive contributors can be extremely damaging to an open source project. This is especially true when organizations and companies who are generating revenue purposefully choose to remain passive. <a href=\"https://dri.es/\">Dries Buytaert</a>, the creator of <a href=\"https://www.drupal.org/\">Drupal</a>, has described this as the &#8220;<a href=\"https://dri.es/balancing-makers-and-takers-to-scale-and-sustain-open-source\">maker-taker problem</a>&#8220;.</p>\n\n\n\n<p class=\"\">As I defined what active and passive contributions are to provide context, I came to the realization that in many ways I&#8217;m trying to describe a similar problem. However, there are some key differences to what I&#8217;m exploring here. Dries explores project sustainability and what that means under a financial and governance lens. While the background I&#8217;ve shared so far may resemble the maker-taker problem, I’m focused on how and when to participate when you have criticism. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-criticism-as-a-contribution\">Criticism As A Contribution</h2>\n\n\n\n<p class=\"\">So let&#8217;s return to the questions from the beginning: When is it acceptable to be critical? Is it fair to offer criticism when you don&#8217;t have all the information? Just like telemetry can help paint the full picture using data points, criticism can help maintainers understand what&#8217;s working and what&#8217;s not. The more feedback loops that exist between maintainers and different stakeholders, the better. It&#8217;s natural to be apprehensive about coming forward to condemn the work that has been done. But if something concerns you or doesn&#8217;t fit your use cases, it&#8217;s important to speak up.</p>\n\n\n\n<p class=\"\">Here are some tips to help you have the right mindset so your insight can have the most impact.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-silos-help-no-one\">Silos Help No One</h3>\n\n\n\n<p class=\"\">Learning together is better than learning in a silo. When you voice concerns or questions publicly, you&#8217;re not just advocating for yourself. You&#8217;re likely representing many others who share the same confusion or frustration but haven&#8217;t spoken up yet.</p>\n\n\n\n<p class=\"\">Luke is an experienced community member, so his bar for what constitutes a &#8220;quality&#8221; contribution is quite high. But his hesitation on the podcast actually illustrates an important point: by discussing his concerns openly (even while acknowledging his incomplete knowledge), he invites others into the learning process. The conversation itself becomes valuable, prompting everyone to explore technical decisions together.</p>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"Looking through a rock formation at a seaside fisherman courageously casts his line as a storm approaches Beavertail Lighthouse in Rhode Island.\" class=\"wp-image-10528 not-transparent\" height=\"4000\" src=\"https://jonathandesrosiers.com/wp-content/uploads/2026/01/61365a83787ce7b45.52175946.jpg\" width=\"6000\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button><figcaption class=\"wp-element-caption\"><a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/61365a8378/\">photo</a> by <a href=\"https://wordpress.org/photos/author/maverick3x6/\">Jeff Golenski</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</figcaption></figure>\n\n\n\n<p class=\"\">When you keep your criticism private or wait until you have &#8220;complete&#8221; knowledge, you miss opportunities for collaborative problem-solving. Sometimes the act of asking &#8220;why was it built this way?&#8221; in public forums leads to documentation improvements, clearer architectural decision records, or simply helps other contributors understand the reasoning.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-research-is-not-everything\">Research Is Not Everything</h3>\n\n\n\n<p class=\"\">I mentioned above that showing up comes with the responsibility to be prepared. While it&#8217;s true that researching before engaging can be very helpful, it&#8217;s not a steadfast requirement, provided you approach the conversation with humility, genuine curiosity, and the desire to help.</p>\n\n\n\n<p class=\"\">There&#8217;s a balance to strike here. Some research shows good faith and respect for the contributors who came before you. It demonstrates you&#8217;ve tried to understand the context. But perfectionism about having complete knowledge can become a barrier to participation.</p>\n\n\n\n<p class=\"\">The key is being transparent about what you do and don&#8217;t know: &#8220;I&#8217;ve looked through the related tickets on Trac and the PR where the feature was built, but I&#8217;m not seeing where the decision about using the Comments API was discussed. Can someone point me to that conversation?&#8221; is far more productive than either staying silent or declaring &#8220;This was obviously the wrong choice.&#8221;</p>\n\n\n\n<p class=\"\">Your questions and criticisms are still valuable even when they come from incomplete understanding, as long as you frame them as questions and criticisms, not pronouncements.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-a-voice-not-a-vote\">A Voice, Not A Vote</h3>\n\n\n\n<p class=\"\">Showing up does not grant you a vote, no matter how prepared, informed, or experienced you are. This can be a difficult reality to accept, especially if you&#8217;ve spent considerable time researching an issue or crafting a well-reasoned argument.</p>\n\n\n\n<p class=\"\">But understanding this distinction is liberating. Your goal in offering criticism isn&#8217;t to force a particular outcome. It&#8217;s to ensure your perspective is heard and considered. Decisions in open source are ultimately made by those who do the work and maintain the code. Your criticism contributes valuable perspective to that decision-making process, but the decision itself belongs to the maintainers who will live with the consequences.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<blockquote class=\"wp-block-quote alignwide has-text-align-center is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"\">When a change is made to a code base, the committer making that change is taking on a lot of extra responsibility. In some ways, they now own that change and any resulting test failures, bugs, features built on top of the change, or even security issues that may follow. They must be willing to stand behind the changes they make until new rationale is presented.</p>\n\n\n\n<p class=\"\"><a href=\"https://maintaine.rs/desrosj#maintainers-are-the-code-they-commit\">Maintainers in the WordPress Project</a> &#8211; <a href=\"https://maintaine.rs/\">maintaine.rs</a> &#8211; Jonathan Desrosiers</p>\n</blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"\">This is why the <em>how</em> of criticism matters so much. Criticism framed as demands or accusations puts maintainers on the defensive. Criticism framed as genuine questions and concerns begins a dialogue. &#8220;I&#8217;m worried this approach will cause problems with X&#8221; invites discussion. &#8220;You should have done Y instead&#8221; closes it.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-responsibility-of-voice\">The Responsibility of Voice</h2>\n\n\n\n<p class=\"\">Luke eventually did engage with his concerns about the Notes feature, and the WordPress community is better for it. His journey from hesitation to informed participation is a model worth emulating: acknowledge what you don&#8217;t know, do some research, but don&#8217;t let the pursuit of perfect knowledge stop you from contributing your perspective.</p>\n\n\n\n<p class=\"\">The next time you find yourself frustrated with a technical decision or concerned about a direction your favorite open source project is taking, remember: your criticism is a contribution. The question isn&#8217;t whether you have the right to speak (you do). The question is how you&#8217;ll use that voice to make the project stronger for everyone.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Featured image credit: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/4086355e20/\">photo</a> by <a href=\"https://naoko.blog/\">Naoko Takano</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</em></p>\n<p>The post <a href=\"https://jonathandesrosiers.com/2026/02/offering-criticism-in-open-source-projects/\">Offering Criticism in Open Source Projects</a> appeared first on <a href=\"https://jonathandesrosiers.com\">Jonathan Desrosiers</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Feb 2026 15:20:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Open Channels FM: On Being Flexible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114533\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://openchannels.fm/on-being-flexible/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Over the years there has been one single piece of advice I have given small business owners and freelancers.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Feb 2026 13:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Gutenberg Times: Navigation Overlays, WordPress 7.0, Interactivity API Helper, AI Skills, and  #WCAsia — Weekend Edition #355\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44172\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://gutenbergtimes.com/navigation-overlays-wordpress-7-0-interactivity-api-helper-ai-skills-and-wcasia-weekend-edition-355/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25910:\"<p class=\"wp-block-paragraph\">Hi, there <img alt=\"👋\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f44b.png\" style=\"height: 1em;\" /></p>\n\n\n\n<p class=\"wp-block-paragraph\">this week, you&#8217;ll find a great mix of new releases, new tools, new plugins and events. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Outside the WordPress sphere I signed up for the <a href=\"https://events.humanitix.com/fediforum-un-workshop-growing-the-open-social-web-2026-03\">FediForum Un-Workshop</a>, an event bringing together people who will discuss obstacles and ideas on growing the Open Social Web. It&#8217;ll be a three-hour virtual event on March 2, 2026. It&#8217;s NOT on the same day as <strong>Human Made&#8217;s WP:26</strong> event, which takes place 10 days later. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I hope you enjoy this week&#8217;s edition and I wish you a great weekend! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Human Made </strong>announced <a href=\"https://humanmade.com/wordpress-in-2026-event/\"><strong>WP:26</strong></a>, a virtual event on March 12th exploring where WordPress is heading this year. You&#8217;ll hear from Mary Hubbard (WordPress executive director), speakers from Pantheon, Yoast, News UK, and PMC on topics like hybrid CMS architectures, agentic AI systems, and the CMS as orchestration layer. Following last year&#8217;s WP:25 with 700+ attendees, this one targets digital leaders, architects, and teams betting on WordPress long-term—registration is open now. It&#8217;s free and will be recorded, I reckon. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong><a href=\"https://asia.wordcamp.org/2026/updates/\">WordCamp Asia communication team</a> </strong>is publishing great content to get ready for the event: <a href=\"https://asia.wordcamp.org/2026/event-pass/?refresh=true#get-your-pass\">Tickets are still available</a>, <a href=\"https://asia.wordcamp.org/2026/call-for-sponsors/\">Sponsorships as well </a>and you can learn more about <a href=\"https://asia.wordcamp.org/2026/things-to-do-in-mumbai/\">Mumbai</a>, <a href=\"https://asia.wordcamp.org/2026/namaste-india-guide-to-indian-culture/\">Indian culture</a> and <a href=\"https://asia.wordcamp.org/2026/mumbai-on-a-plate/\">food</a>. The WordCamp will take place between April 9 and 11, 2026. The <a href=\"https://asia.wordcamp.org/2026/category/speakers/\">first rounds of speakers</a> are announced, too. Will I see you there? It would be wonderful to meet you! You are welcome to use <a href=\"https://calendly.com/pauli-haack/wcasia\">my public calendar to schedule a meeting</a>. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://asia.wordcamp.org/2026/category/speakers/\"><img alt=\"Announced speakers WordCamp Asia 2026\" class=\"wp-image-44227\" height=\"158\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/01/Screenshot-2026-01-31-at-11.24.05.png?resize=652%2C158&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><em>If WordCamp Asia is not on your radar, check out the <a href=\"https://central.wordcamp.org/schedule/\">WordCamp calendar</a> for in person or educational event closer to you or on a different date. </em></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/2026/01/30/wordpress-6-9-1-rc1-is-now-available/\"><strong>WordPress 6.9.1 RC1 is now available</strong></a>. Led by <strong>Aaron Jorbin</strong> and <strong>Aki Hamano</strong>, the final release is planned for February 3, 2026. You can test using the Beta Tester plugin, WP-CLI, or a direct download. This maintenance release addresses bugs introduced in 6.9, with 23 Core fixes and 25 Block Editor fixes. Notable corrections include mail function errors, broken styling on the Add Plugins screen, widget accessibility issues, and several Interactivity API router fixes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v22.5.0-rc.1\"><strong>Gutenberg 22.5 RC 1</strong></a> is also available for testing. The final release is scheduled for February 4, 2025. It will bring practical refinements for your editing workflow. You can now add <a href=\"https://github.com/WordPress/gutenberg/pull/73959\">custom CSS to individual blocks</a>, and the Image block shows <a href=\"https://github.com/WordPress/gutenberg/pull/74519\">aspect ratio controls for wide and full alignments</a>. List View gets more useful with <a href=\"https://github.com/WordPress/gutenberg/pull/74798\">full block titles</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/74794\">actual content displayed for list items</a>. The release also stabilizes viewport-based block visibility and pattern editing, plus adds focal point controls for fixed Cover backgrounds and text column support for Paragraphs.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Mary Hubbard</strong>, executive director of WordPress open-source project,  outlines the <a href=\"https://make.wordpress.org/project/2026/01/23/big-picture-goals-for-2026/\">big picture goals for WordPress in 2026</a>, signaling a return to three releases annually with WordPress 7.0 arriving at WordCamp Asia. You&#8217;ll see real-time co-editing move into Phase 3: Collaboration, client-side media processing graduate to Core, and new blocks like Tabs and Icon ship out of the box. </p>\n\n\n\n<p class=\"wp-block-paragraph\">What I am most excited about is Hubbard&#8217;s emphasis on WordPress meetups as the primary front door to contribution and calls on Make teams to prepare clearer onboarding paths for incoming contributors. If there isn&#8217;t a WordPress Meetup in your city or region, the community team would love to help you start one. Before my year-end vacation I collaborated with co-organizers, and we revitalized the <a href=\"https://www.meetup.com/munchen-wordpress-meetup/\">München WordPress Meetup</a>. If you are in the city,<a href=\"https://www.meetup.com/munchen-wordpress-meetup/events/313062167/\"> join us on February 11 at 19:00.</a> Or every second Wednesday of the month. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> shares her latest round of <a href=\"https://nomad.blog/2026/01/23/exploring-work-in-progress-for-wordpress-7-0/\"><strong>exploring work in progress for WordPress 7.0</strong></a>, with beta 1 just weeks away. You&#8217;ll find hands-on looks at real-time collaboration transport layers, visual revisions, responsive block hiding, customizable navigation overlays, and the Cover block&#8217;s new video embed support. The Gallery block gains lightbox navigation, while Tabs and Breadcrumbs blocks continue maturing. McCarthy encourages you to test via WordPress Playground and to leave feedback on GitHub.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><br /><strong>David Smith</strong> posted a <a href=\"https://make.wordpress.org/test/2026/01/27/call-for-testing-customizable-navigation-mobile-overlays/\"><strong>call for testing customizable navigation mobile overlays</strong></a> targeting WordPress 7.0. This feature finally gives you full control over mobile hamburger menus using blocks and patterns—add branding, calls-to-action, images, and custom styling instead of being stuck with WordPress defaults. Overlays are saved as template parts, so themes can ship their own variations. Feedback is requested by February 9th, with a <a href=\"https://playground.wordpress.net/?gutenberg-branch=test%2Fcontent-only-patterns-experiment&amp;blueprint-url=https%3A%2F%2Fgist.githubusercontent.com%2Fgetdave%2Fdcaf203c16e7362a2e00f85b04e67404%2Fraw\">ready-to-go Playground instance</a> for quick testing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your feedback would ddirectly shapes what ships in core—catching bugs, validating UX decisions, and surfacing edge cases before millions of sites receive the update. It&#8217;s one of the most impactful ways to contribute to WordPress without writing code, and the Test Team provides clear scenarios and templates for reporting issues. Give it a whirl, and learn first hand how this new feature works. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\">Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2</a> with <strong>JC Palmes</strong>, WebDev Studios</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> highlights the most important updates from the <em>What&#8217;s New for Developer (January 2026)</em> post in his latest video: <a href=\"https://www.youtube.com/watch?v=cSkiV7yvUD0\" rel=\"noreferrer noopener\" target=\"_blank\">Responsive Grids, PHP Blocks, Smarter Tools: WordPress in January</a>.</p>\n\n\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Brandon Payton</strong> published <a href=\"https://wordpress.org/news/2026/01/new-ai-agent-skill/\">wp-playground</a>, a new AI agent skill that lets tools like Claude Code and Codex run WordPress via the Playground CLI for fast, repeatable testing. The skill auto-detects where your code belongs—mounting plugins or themes by recognizing file signatures—and reduces the &#8220;ready to test&#8221; moment from roughly a minute to a few seconds. You can install it via <code>npx openskills install WordPress/agent-skills</code>, and contributions are welcome at the new <a href=\"https://github.com/WordPress/agent-skills/\">WordPress/agent-skills</a> repository.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Varun Dubey</strong>&#8216;s comprehensive look at <a href=\"https://vapvarun.com/gutenberg-blocks-2026-wordpress-block-editor-ai-era/\"><strong>Gutenberg blocks in 2026 and WordPress development in the AI era</strong></a> walks you through how the block revolution has fundamentally shifted WordPress workflows. You&#8217;ll find practical guidance on when to choose patterns over custom blocks, explore emerging AI tools like WordPress Telex and Kadence&#8217;s inline generation, and understand why block metadata makes AI integration particularly powerful. Solid reading whether you&#8217;re building blocks or simply trying to keep pace with where WordPress is heading.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Troy Chaplin</strong>&#8216;s <a href=\"https://wordpress.org/plugins/block-finder/\">Block Finder plugin</a> gives you a dashboard metabox to quickly locate any core or custom Gutenberg block across your entire site. You can filter by post type, detect InnerBlocks nested within parent containers, and jump directly to editing posts containing specific blocks. Particularly handy if you&#8217;re managing large-scale migrations or hunting down where a particular block lives—one reviewer credited it with helping audit over 700 sites during a Classic-to-Gutenberg transition.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Weston Ruter</strong> released <a href=\"https://weston.ruter.net/2026/01/19/post-date-block-published-modified/\">Post Date Block: Published &amp; Modified</a>, a plugin addressing a long-standing gap in the Date block. You can now display both publish and modified dates when they differ—with configurable prefixes, suffixes, and single-line or two-line layouts. The plugin uses the HTML Tag Processor to inject clean markup with proper microformat classes, and it&#8217;s now live on WordPress.org. Ruter positions it as a prototype until something similar lands in core, possibly via the upcoming Shortblocks feature.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">On the <a href=\"https://wpbuilds.com/2026/01/15/452-exploring-folioblocks-michael-campanellas-wordpress-gallery-plugin-for-photographers/\">WP Builds podcast episode 452</a>, <strong>Nathan Wrigley</strong> chats with photographer and developer <strong>Michael Campanella</strong> about <a href=\"https://wordpress.org/plugins/folioblocks/\">FolioBlocks</a>, his block-based gallery plugin built from a working photographer&#8217;s perspective. You&#8217;ll hear about grid, justified, masonry, carousel, and the clever modular gallery that uses rows and stacks for visual priority. The plugin includes real-time filtering via comma-separated keywords, WooCommerce integration for selling prints, and image downloads—all with true visual parity between editor and frontend.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/plugins/folioblocks/\"><img alt=\"\" class=\"wp-image-44214\" height=\"422\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/01/FolioBlocks.jpg?resize=652%2C422&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Kadim Gültekin&#8217;</strong>s <a href=\"https://wordpress.org/plugins/block-theme-color-switcher/\"><strong>Block Theme Color Switcher</strong></a> lets your visitors preview every style variation your block theme offers without you creating multiple demo sites. The plugin automatically parses theme.json and the styles folder to generate a floating frontend menu where users can swap color palettes instantly—no page reload required. Selections persist via localStorage, making it particularly useful for theme developers showcasing their work or sites offering accessibility options like high-contrast modes.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Johanne Courtright</strong>&#8216;s tutorial on <a href=\"https://groundworx.dev/resources/stop-fighting-your-layouts-the-real-power-of-css-grid/\">the real power of CSS Grid</a> goes well beyond basic column setups into territory useful for theme builders. You&#8217;ll learn how <code>minmax()</code> creates flexible-yet-constrained layouts, how named grid lines with <code>-start</code> and <code>-end</code> suffixes unlock implicit areas, and how <code>grid-template-areas</code> lets you draw layouts in code. The full-width breakout pattern—achieving edge-to-edge elements without negative margins—offers a cleaner alternative to the margin-based approach WordPress core currently uses for wide and full alignments.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> released <a href=\"https://github.com/ryanwelcher/wordpress-interactivity-api-helper\">WordPress Interactivity API Helper</a>, a VS Code extension that brings intelligent autocomplete and validation to <code>data-wp-*</code> directives. You get context-aware suggestions for state, actions, and callbacks based on detected stores in your PHP and JavaScript files, plus warnings for duplicate directives and undefined namespaces with typo suggestions. If you&#8217;re building interactive blocks and find yourself constantly referencing the documentation for directive syntax, this extension should smooth out your workflow considerably. Go to <strong>Extension &gt; Search for <code>Interactivity</code></strong> and install. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://marketplace.visualstudio.com/items?itemName=ryanwelcher.wordpress-interactivity-api-helper\"><img alt=\"\" class=\"wp-image-44201\" height=\"435\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/01/Screenshot-2026-01-30-at-17.37.50.png?resize=652%2C435&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nick Diego</strong> announced <a href=\"https://wordpress.com/blog/2026/01/27/wordpress-studio-1-7-0-new-studio-cli/\"><strong>WordPress Studio 1.7.0 with a major CLI upgrade</strong></a> that turns the command line into a full-featured companion for local development. You can now create, start, stop, and delete local sites entirely from the terminal, plus run WP-CLI commands without installing it yourself—Studio handles all the environment configuration. Diego walks through practical examples of pairing the CLI with AI coding tools like Claude Code and Cursor, where agents can spin up sites, run diagnostics, and deploy preview sites without you touching the Studio UI.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>JuanMa Garrido</strong>&#8216;s <a href=\"https://github.com/juanmaguitar/wpsmith\">WPSmith</a> brings the Laravel <code>php artisan</code> experience to WordPress, wrapping Playground&#8217;s CLI and WP-CLI into one streamlined tool. You can spin up disposable sites with <code>wpsmith new</code>, manage database snapshots via checkpoint and rollback commands, reset to fresh state, or seed test data—workflows that don&#8217;t yet exist in tool like <em><a href=\"https://developer.wordpress.com/docs/developer-tools/studio/cli/\">Studio&#8217;s CLI</a></em>. Scaffold shortcuts like <code>forge:plugin</code> and <code>forge:block</code> round out the toolkit. It&#8217;s designed for both developers and AI agents working entirely from the terminal.You can take a glimspe on <a href=\"https://www.youtube.com/watch?v=bzCrTWyKnI8\"><em>how it works on YouTube</em></a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://github.com/juanmaguitar/wpsmith\"><img alt=\"\" class=\"wp-image-44213\" height=\"304\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/01/WPSmith-JuanMa-Garrido.jpg?resize=542%2C304&#038;ssl=1\" width=\"542\" /></a></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-and-ai\">WordPress and AI </h2>\n\n\n\n<p class=\"wp-block-paragraph\">On his personal blog, <strong>Jonathan Bossenger</strong> shared <a href=\"https://jonathanbossenger.com/four-wordpress-apps-i-built-with-ai-that-i-use-every-day/\">four WordPress apps he built with AI</a> that he uses daily. You&#8217;ll find </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WP Debug for quick access to WordPress debug logs, </li>\n\n\n\n<li>WP SQLite for inspecting WordPress Studio databases, </li>\n\n\n\n<li>WP Mail for capturing local emails during development, and </li>\n\n\n\n<li>WP Shell for running PHP snippets. </li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Each scratches a specific itch without a steep learning curve—and in a fun twist, the post itself was largely AI-generated using the WP AI Client.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In his latest video &#8220;<a href=\"https://www.youtube.com/watch?v=czH6fV6z4Eg\"><strong>Benchmarking AI models for WordPress development</strong></a>&#8221; , Bossenger walks you through getting started with <a href=\"https://make.wordpress.org/ai/2026/01/14/introducing-wp-bench-a-wordpress-ai-benchmark/\">WP Bench</a>, the AI benchmarking tool for WordPress development tasks. You&#8217;ll follow along as he clones the repository, sets up the Python environment, and configures API keys. The real fun comes when he pits his MacBook against an Intel workstation, testing local and cloud models including GPT, Claude Sonnet, Qwen Coder, and Deepseek Coder to see which delivers the best performance for WordPress coding workflows.</p>\n\n\n<div class=\"ng-block-d6560212644c2812 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-f1418125cfc805e3 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-b4dec36a248f3ad0 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-d9320377196c538a wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-3c1334cb4b62d7e9 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-7aa02e9992cdcae6 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Jan 2026 03:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: New AI Agent Skill for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19798\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2026/01/new-ai-agent-skill/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4931:\"<h2 class=\"wp-block-heading\">Faster Way For AI Agents To Test</h2>\n\n\n\n<p class=\"wp-block-paragraph\">AI code agents are getting better at writing WordPress plugins and themes, but testing can still be the slow part. WordPress contributor <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> has published wp-playground, a new AI agent skill designed to run WordPress via the Playground CLI<strong>, </strong>giving agents a fast, repeatable way to run WordPress and verify their work as they iterate.<br /></p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">&#8220;AI agents work better when they have a clear feedback loop. That’s why I made the wp-playground skill. It gives agents an easy way to test WordPress code and makes building and experimenting with WordPress a lot more accessible.&#8221;</p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8212; Brandon Payton, WordPress Contributor</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">What the Playground skill does</h2>\n\n\n\n<p class=\"wp-block-paragraph\">When launched, the skill starts WordPress and detects where the current code should live inside a WordPress install. For example, it can mount a plugin into wp-content/plugins or a theme into wp-content/themes by recognizing common file signatures (such as plugin headers or a theme’s style.css). This helps agents move from “generated code” to “running site” with fewer manual steps.<br /></p>\n\n\n\n<div class=\"wp-block-cover wp-elements-1323ebcb3edbff2bde6000899ed39b56\"><span class=\"wp-block-cover__background has-background-dim-80 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-container-core-cover-is-layout-063a8677 wp-block-cover-is-layout-constrained\">\n<p class=\"has-text-align-center has-off-white-2-color has-text-color has-link-color has-eb-garamond-font-family has-huge-font-size wp-elements-11d5ec75ba50354c745eeb5f70fa912c wp-block-paragraph\" style=\"margin-top: 0; margin-bottom: 0;\"><strong>Install and try it today.</strong></p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">Find more information on this GitHub link:</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-blue-1-background-color has-background has-eb-garamond-font-family has-large-font-size has-custom-font-size wp-element-button\" href=\"https://github.com/WordPress/agent-skills/\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>WordPress AI Agent Skills</strong></a></div>\n</div>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Early results and testing workflow</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In testing, agents were able to start WordPress, build playful plugins, and validate behavior in a tight feedback loop. Once Playground was running, the agent alternated between tools such as curl and Playwright to interact with WordPress, verify results, apply fixes when needed, and then re-verify with Playground.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Faster startup and smoother iteration</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Helper scripts handle startup and shutdown, so an agent doesn’t waste time guessing when WordPress is ready. Using helper scripts reduced the “ready to test” moment from roughly a minute to a few seconds on the author’s machine. The Playground CLI can also log in automatically for easier WP-Admin access during testing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Install and try it now</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For those who want to try it in Claude Code, Codex, or another AI agent, installation requires <a href=\"https://nodejs.org/\">Node.js</a> and npm and looks like this:</p>\n\n\n\n<p class=\"has-cyan-bluish-gray-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-elements-2a77bf7f3e8595318d429b5c7a3f6dd5 wp-block-paragraph\"># Run this in a project directory to install the skills for that project <br />npx openskills install WordPress/agent-skills<br /><br /># Make skills available to non-Claude agents<br />npx openskills sync</p>\n\n\n\n<h2 class=\"wp-block-heading\">A new repo for WordPress agent skills</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release also comes with a new home for this kind of work: <br /><a href=\"https://github.com/WordPress/agent-skills\">https://github.com/WordPress/agent-skills</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s an early step in exploring how AI agents can collaborate with WordPress tooling, and contributions from the community are welcome. Future additions being explored include persistent Playground sites based on the current directory, running commands against an existing Playground instance (including wp-cli), and Blueprint generation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jan 2026 17:13:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Open Channels FM: Take the Time to Listen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114583\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://openchannels.fm/take-the-time-to-listen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"We are too busy adding to the conversation vs. just listening.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jan 2026 14:37:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"Open Channels FM: Inside WooCommerce: Competitive Advantages, Community Events, and New Design Directions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114775\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://openchannels.fm/inside-woocommerce-competitive-advantages-community-events-and-new-design-directions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"In this episode of Do the Woo, guest Beau Lebens and hosts James and Katie chat about key WooCommerce topics, including community concerns, competitive advantages, AI developments, and the future of the WooCommerce ecosystem.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Jan 2026 11:06:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: #202 – Charly Leetham on Using WordPress to Enable a Digital Nomad Life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202405\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/podcast/202-charly-leetham-on-using-wordpress-to-enable-a-digital-nomad-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59965:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, using WordPress to enable a digital nomad life.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you or your idea featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Charly Leetham. Charly&#8217;s journey with technology spans over four decades, from tinkering with amateur radio as a teenager in Australia, to working in electronic engineering and eventually building a career in WordPress and small business tech support. With a background in field service, sales, and running retail businesses, Charly pivoted to helping people with their websites and tech needs right around the time WordPress was in its infancy. Today, nearly 20 years later, she&#8217;s still involved in the WordPress ecosystem, providing troubleshooting, support, and plain English tech translations for business owners who need their digital lives demystified.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in this episode, we are focusing less on her technical skills and more on her unique lifestyle. Charly is a true digital nomad. Someone who&#8217;s not bound to a fixed address, but instead lives and works from a camper van fitted with a Starlink system traveling and working all over Australia.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about what it was like to embrace remote working long before it was commonplace, and how she built a business that supports complete flexibility. We explore both the upsides of the digital nomad life, the freedom to travel, spend quality time with family, and work from beautiful locations, as well as the trade-offs such as limited space, and having to ruthlessly prioritize her longings.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Charlie discusses the essential tech setup that empowers her nomadism. From laptops and microphones to how Starlink satellite internet lets her work reliably from almost anywhere, even in places with little or no mobile signal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s practical advice on working with clients, so support can happen on her schedule, and reflections on building a business that matches her values, even if it sometimes means saying goodbye to clients who aren&#8217;t the right fit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;ve ever imagined trading your desk for the open road, or wondered what&#8217;s technologically, and personally possible, as a remote WordPress worker this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Charly Leetham.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Charly Leetham. Hello Charly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:29] <strong>Charly Leetham:</strong> Hi Nathan. It&#8217;s really good to be here, and we are literally on other side of the world from each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:35] <strong>Nathan Wrigley:</strong> We could probably not be further apart. You are in Australia, and we&#8217;ve never met. We spent probably the last 20 minutes or so having a good old natter. It&#8217;s been really interesting. And actually, the way that this podcast was going to go, I think has been upended by the conversation that we just had. Because you talked to me about your digital nomadism, I&#8217;m going to say, and I want to lean into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But before we get into all of that story about how you&#8217;ve ended up working remotely and things, do you just want to give us a little bit of background about how you&#8217;ve come to work, be on a WordPress podcast? What&#8217;s your background with tech, your life in general? Whatever you wish.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:09] <strong>Charly Leetham:</strong> Okay, well, look, I&#8217;ll try and keep it short. There is like 40 years to sort of condense into three or four minutes here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Look, I have always been interested in tech from a very, very, very young age. My dad kind of encouraged me, if I was showed interest in anything, he&#8217;d say, well, go and find out about and let&#8217;s do this and let&#8217;s do that. The age of 13, I had my amateur radio license. By the time I was 16, I&#8217;d just left year 10, grade 10, and I went and did an associate diploma, electronic engineering. I worked full-time as a junior laboratory technician in an electronics lab at the Australian University while I was doing that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And from there I went to be a field service tech with a private company. I&#8217;ve done field service, I&#8217;ve done pre-sales, I&#8217;ve done sales, I&#8217;ve done contract management. I&#8217;ve done customer service management. Done bid management.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then I had a need after I decided, I was really, really sick and tired of doing all of this, so I went and bought myself a business with a franchise. We ran retail businesses for four years. They failed spectacularly. And I had a need that I had to actually get some money through the door so that I could feed the kids, pay the bills, eventually feed myself, and the husband is part of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this was born. And this was, people need help with their technology. People need help with their websites, people need help with their emails, people need help with all of this. And at that point in time, that was 2007 and WordPress was just in its infancy. I think it was, maybe three or four generations in at that point, but it was still in its infancy. And I learned, WordPress from that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Someone said, I&#8217;ve got a WordPress website, it&#8217;s not working. Can you look at it? Sure. I can look at it. I know C++, I know Pascal, I know Basic. Oh, this is PHP. What&#8217;s that? I learned PHP, I learned themes, I learned plugins, I learned how to troubleshoot things. And here we are nearly 20 years later, doing the thing that I love the most.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:16] <strong>Nathan Wrigley:</strong> There&#8217;s a lot in there, Charly. Genuinely, there is a lot in there. But what I&#8217;ve taken from that is that you have always been a bit of a tinkerer. You&#8217;ve always been somebody that&#8217;s fascinated by the technology side of things. Not just the software, but also, you know, the engineering side of things. And so, gosh, what a history you&#8217;ve got.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;ll get onto all the WordPress stuff a little bit later. Obviously that&#8217;s a big part of why you&#8217;re on this particular podcast because we are a WordPress focussed podcast. But it was the conversation that we had about half an hour ago that captured my attention and is just going to divert us for a little while.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that is, you got on the call, we started talking about where we are in the world and the fact that you are over there and I&#8217;m over here, and isn&#8217;t it amazing that we can talk to each other? And the fact that this technology is here and, you know, when we were both children, this was the realm of science fiction. Being able to speak to somebody on the other side of the planet without prearranging it, and organising it with a telephone network and a great expense and all that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then we started talking about literally where you are. And I was kind of curious about your location. It turns out you are a digital nomad. Now, for those people tuning in who don&#8217;t know what this is, a digital nomad, I guess is somebody who is not bound to a specific location. I live in the UK. I have a house and a mortgage and all those kind of things. So I&#8217;ve kind of saddled myself to that, and I&#8217;ve got this definite spot in the world where I call home. You&#8217;ve decided to kind of get rid of all of that. And so just tell us about your life and what it is that you do, and how you move around and how you empower that with technology, and what technology you use to make that even possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:53] <strong>Charly Leetham:</strong> Okay. Let&#8217;s start by telling you a story. When my kids were all, all my kids are now in their early thirties, late twenties, so they&#8217;re adults. They&#8217;re gone, they&#8217;re out doing their own thing. But when my kids were born in the mid nineties, I wanted nothing more than to be able to stay home with them. But because of my experience, because of what I was doing, I was the breadwinner. I was the one that had the money coming in, so I had to go back to work. Went back to it when my kids were really young.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And as much as I loved my job and I loved what I was doing, I really hated not being able to be with him. And what I wanted to do was what I&#8217;m doing now, then. The ability to help people with their tech. The technology didn&#8217;t exist. We couldn&#8217;t remote into computers, we couldn&#8217;t do video conferencing. We couldn&#8217;t even do audio calls like phone networks for what we had. So if you just think about, you know, a young 20-year-old woman with two kids, working in IT, wanting to do this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now we come forward nearly 20 years, or nearly 30 years because my kids are 30. I can do exactly what I wanted to do 30 years ago today. I can sit wherever I am, I can run up my computer, I can get an internet connection, I can talk to you. Someone says to me, my computer&#8217;s not working, or my email&#8217;s not sending, I can&#8217;t do this. I can remote into their computer. I can do a face-to-face call with them. I can remote into their computer. I can give them that support. I don&#8217;t have to be on site to do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That is what a digital nomad is. That&#8217;s what me as a digital nomad does. I provide tech support to people wherever I am, literally in the world. I said to you, I traveled in the US for a couple of years. Well, I got stuck in the US for a couple of years. And I didn&#8217;t work over there. I want to be really, really clear because you&#8217;re allowed to work in the US when you&#8217;re over there on a visitor visa. But I was helping people. People would say to me, my computer&#8217;s broken, well, let me remote in. I&#8217;ll have a look. Let me go and do this, I&#8217;ll help you. My dad would ring me from Australia and say, my email&#8217;s broken. What can I do? I&#8217;d fix it for him.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s what I do. So how does that work for me today? There is a housing crisis. That&#8217;s the first thing that we really need to recognise is there is a housing crisis. Finding a house is really, really difficult. Finding a house that is affordable is even more difficult. Rather than stressing on the fact that I can&#8217;t find a house, or I can&#8217;t afford the rent for a house, or I don&#8217;t want to have that stress of having a rent for a house. I fitted out a vehicle, I got a Starlink system. My brother fitted the vehicle out for me. My son, who is the electrician, put the electrical into it. And I literally live on the road. I go from place to place. I find somewhere I can hook into power for a couple of days. I throw my Starlink out the site, and I work. I support people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You could talk to me tomorrow, well, not tomorrow. Talk to me in a month, and I&#8217;m going to be in far North Queensland. A month from today, I will be in far North Queensland doing things up in far North Queensland because I&#8217;ve got to be up there for something. That&#8217;s what my life is like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:55] <strong>Nathan Wrigley:</strong> If we rewind the clock, I don&#8217;t know, 10 years, did you desire something like that? From what you said, it sounds like you did. You always had some sort of intuition that if the technology allowed, you would wish for something like that. But obviously, kids and bills and all of that kind of got in the way. Has this been something which, if you sort of look back on your life, you think instinctively this was something that you wished to do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:17] <strong>Charly Leetham:</strong> Not on the road. Not mobile like I am. Being able to do it from home, being able to be a work from home mum, absolutely. Being on the road and moving around, no, not even my wildest dreams would I have even imagined it. I didn&#8217;t even know that was available to us. I had no idea.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Look, I&#8217;ve met people, just to sort of segue very quickly. I have met people while I&#8217;m doing this, and they are young families. They are mum and dad and the kids, and they&#8217;re living on the road. They&#8217;ve got homeschooling curriculums for the kids. The kids do all their schooling. They get all these extra education of the places they&#8217;re in, all the things that they&#8217;re doing. Mum and dad will arrange to take the kids out on a bushwalk, and go and see a place that very few people in Australia will ever get to see. And these kids are living this life. I didn&#8217;t know that was available. If I had known that was available, I might have done that with my kids.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:08] <strong>Nathan Wrigley:</strong> I think one of the curious things is that, if you are working in the tech space, and obviously we&#8217;ll talk more about WordPress in a moment, there is a significant chance that this is available to you. I mean obviously you may have a job which is office bound. We understand that that means that you&#8217;ve got to show up to the office and what have you. But I&#8217;m imagining that there&#8217;s quite a few people listening to this podcast who, if they were to really examine it, these possibilities are open to them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it may not be something that they, A, wish to do, or B, they&#8217;ve not really thought about it too much. You know, they&#8217;ve decided that, okay, life is fine, I like my local environment or what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What are like the key benefits, if you know what I mean? If you were to advertise this lifestyle to our audience, so we&#8217;ll do this in two parts. Let&#8217;s do the benefits first and then we&#8217;ll do the drawbacks later. What are the key things which you look at in your life at the moment and think, I&#8217;m so grateful for that? What are they?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:57] <strong>Charly Leetham:</strong> Freedom. Absolutely the freedom. I mean, we&#8217;re going to talk about drawbacks in a minute, so that&#8217;s going to get balanced out. But it is the freedom. It&#8217;s the ability to say, it&#8217;s getting cold in the south of Australia, remembering we&#8217;re in the southern hemisphere. So, I actually have to say that because people like, it&#8217;s hot in the south. No, it&#8217;s cold in the south. So as the winter months come and it gets colder, we migrate north. So I can literally say, no, it&#8217;s too cold here, I&#8217;m going to go north. Going to go to Queensland and spend winter in Queensland. It still gets cold, but not as cold as it does in the south. So you&#8217;ve got that ability.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I guess one of the biggest benefits is my dad is, he&#8217;s in his late seventies and I get to travel with dad. Dad&#8217;s traveled for many, many years and he still is. But I get to travel with dad. I get to spend these years with my dad. There&#8217;s not many people that can say they get to spend this sort of time, and this quality time, with their parents at this stage of life, because life gets in our way. But we make it work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We will, once a week, arrange to go and do something. He&#8217;ll come and knock on the door and say, you are working too hard. I&#8217;m like, I&#8217;m working, go away, leave me alone. But then it&#8217;ll be, okay, yes, you&#8217;re right. I&#8217;m working too hard, so why don&#8217;t I take this morning off and we go and visit this place where we are staying. Go and find a touristy place or a bush walk to do, or go for a swim in the sea, or go and do something together so I can spend time with my dad. If the family needs me to be somewhere, I can be there, generally.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I also just to sort of pad this out a little, I also house sit while I&#8217;m doing it. So sometimes I&#8217;ll get to a place, someone will be advertising, we need a house sitter. We need someone to come and live in the house, or live at the house, for a couple of weeks while we&#8217;re away. So I&#8217;ll go and house sit for them, and I get another experience in all of that. So that&#8217;s the benefits. It&#8217;s just that flexibility. I would be doing exactly what I&#8217;m doing, but I would be stuck in a house. I&#8217;d be stuck in a room, in a house, grinding. I can grind and be in some of the most beautiful places in the country.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:02] <strong>Nathan Wrigley:</strong> Do you know, it&#8217;s so curious because I&#8217;m imagining there&#8217;s a proportion of the people listening to this who are just so in awe of that description. You know, oh gosh, you can really spend the time in the locations that you wish. I&#8217;m imagining there&#8217;ll also be other people who think, no, that&#8217;s not what I want at all. But I&#8217;ve got to say, I&#8217;m really drawn to what you&#8217;re saying. The idea of being able to go and, I don&#8217;t know, work with a spectacular view. Or work in a particular city for a period of time, and then go somewhere slightly more rural. In other words, it&#8217;s not the same view that you get every day when you wake up. There&#8217;s that variety in life which, certainly for me, there&#8217;s a lot of appeal there. Okay, let&#8217;s do the drawbacks. What are the downsides?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:44] <strong>Charly Leetham:</strong> The downsize is I live in a car. Literally, I live in a little camper van. My workspace is probably, because I fitted out a little commercial vehicle, a little commercial van as my van and as, you know, as my income improves, my savings improve, I will probably upgrade it. But my workspace is probably a metre by a metre. It&#8217;s not very big. And when I finish up for the day, I&#8217;ve got to pack everything up so I&#8217;ve got room for relaxation. I can&#8217;t sort of just walk out of a room, shut the door and say, well, that&#8217;s work done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, work&#8217;s done for me, I&#8217;ve got to pack everything up, I&#8217;ve got to put everything away. You are living on the road, so you don&#8217;t have all of your stuff. And I&#8217;m going to put stuff in double quotes, they&#8217;re in inverted commas. You learn very quickly what is important to you, and what is necessary, and you have what is necessary. And then you have a few of those things that you go, these are really important to me and I&#8217;m not going to give them up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it is not like you can say, oh, I&#8217;ve got that plate that is really good for this entertaining thing, and go to a cupboard and pull that plate out that you use maybe once a year. No, you don&#8217;t have that. You&#8217;ve got the plates that you use every day.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:50] <strong>Nathan Wrigley:</strong> Yeah. The plates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:52] <strong>Charly Leetham:</strong> Yeah, well, I travel on my own. I could literally live with one plate, one cup, one bowl, knife and fork. You are trading off that flexibility of having a house where you can have things stored, and all of storage space. You really have to think about what it is you want. I have a rule. I literally have a rule and I think everyone should live with this rule anyway. I have to have needed it four times before I go and buy it. If I haven&#8217;t needed it four times, then I&#8217;m not going to buy it. If I look at something, I go, oh, that&#8217;d be really cool and it&#8217;d be really convenient. Then I go, but would I use it? Have I needed it four times? Have I needed the functionality that gives me four times? No, don&#8217;t buy it. Because where the hell am I going to put it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:37] <strong>Nathan Wrigley:</strong> Yeah, and I guess whatever you&#8217;re buying, you have to buy the tiny version of it as well. You can&#8217;t get the sort of jumbo version of whatever it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:44] <strong>Charly Leetham:</strong> There&#8217;s your other trade off is you can&#8217;t buy food in bulk. Like, I used to go and buy several cans of food and put them in the cupboard. Whether I used them or not immediately, there would be several cans of the same thing in the cupboard just in case I needed it. And if it was sort of, oh, I&#8217;m down to the last can, I&#8217;ll go and buy a few more. Well, now I&#8217;m down to buying two or three cans at a time. And once I&#8217;ve run those out, I&#8217;ve got to go and find the nearest shop and go and buy another one just to sort of keep it topped up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You&#8217;re not buying in bulk, you&#8217;re not buying your meat, you&#8217;re not buying your fruit veg in bulk. Does that matter? No, because when you get to certain places, you normally find the local providers, you normally find the local fruit seller or the local fruit and veg shop, and go and buy there. You go and support the local community, and you pick up a few things there and, yep, that&#8217;s what you&#8217;re going to use. That&#8217;s what we do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:31] <strong>Nathan Wrigley:</strong> Just to interrupt there, Charly, do you try to spend a significant portion of time in a particular place so that rather than just sort of driving through it, I guess, and spending a couple of days here and a couple of days there, do you spend significant amounts of time there, and therefore begin to have some feeling of what that community is like?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I guess the underpinnings of that question really is, how do you get that sort of human interaction that so many people think is important? Because clearly you are meeting fresh people every day, and you probably don&#8217;t get the chance to form those roots and what have you. So there&#8217;s a lot there. But do you know what I mean? Do you try to sort of spend a bit of time so that you gather some of those human connections along the way?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:12] <strong>Charly Leetham:</strong> Okay, so there&#8217;s a couple of things there that you&#8217;ve touched on. On my way to a location, I may only spend a day in a location, as I&#8217;m heading to a final destination or the next stop along the way. When I get to that next stop along the way, I do try to spend a bit of time, because I like to put my roots down. I like to be able to just settle on in, be able to work for really long periods and not have to worry about, oh, I&#8217;ve got to pack everything up and be on the road again. I&#8217;ve worked for three days, now I&#8217;ve got to spend the next two or three hours packing everything up so I can get on the road and drive for another couple of hours. Yes, I know English people are going to say, couple of hours driving, you&#8217;d be across the country.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;d spend a couple of hours driving and then you get to the other end and you&#8217;ve got to set it up. So you&#8217;re losing a day when you&#8217;re doing that. So my preference is when I get to where I want to be, getting my feet down and staying there for a couple of weeks if I can. And then from there, I use that as a base of, okay, what is within a hundred kilometers that I can go and visit, and do the site seeing, and do the local colour, and make that a hub for my activities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You then asked about human interaction and honestly, I think I&#8217;m a little different to people. I don&#8217;t need it as much as others. I am really, really quite happy to just be in my sphere. I&#8217;ve got my online connections. If I need to speak to someone, I&#8217;ve normally got someone on the other, on Discord, or one of the chat programs that I can chat to. And then if I feel like I&#8217;m getting to that stir crazy point, you go to the local pub or you go to the local cafe and you sort of sit around and you have a chat to the locals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That fills that need for me. I&#8217;m not a person who is, it sounds terrible, I&#8217;m actually really good in a public environment, but it drains me. So I really, once that&#8217;s done, I&#8217;m done for a couple of days and I can just go sit in nature and not worry about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:58] <strong>Nathan Wrigley:</strong> Yeah, I think everybody can totally see that. There&#8217;s just so many different personality types, isn&#8217;t there? I can identify exactly with what you&#8217;re saying. I can go for extended periods of time, and not really require that human interaction. And then occasionally I sort of crave it, and so I satisfy it and go and meet people and hang out with all sorts of different people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I guess really that is the piece that you would need to examine in your own life. Because if you were going to go nomadic, for want of a better word, you&#8217;ve got to really understand that bit. What is your need? On what level do you need to be with other people and interact with other people? Because that&#8217;s really the fulcrum around what makes this whole thing possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Speaking of what makes the whole thing possible, I&#8217;m interested to delve into the tech a little bit. Because you mentioned this sort of one metre square, and the fact that you&#8217;ve got to pack things away and what have you. I&#8217;m curious as to what technology do you have which enables this? Ignoring the vehicle and all that, I&#8217;m just trying to imagine what you might put in your shopping cart. If you were telling somebody this digital nomad life was available, what would be the requirements to make that happen?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:01] <strong>Charly Leetham:</strong> So I&#8217;m doing this with my laptop computer. Now, I buy as top of the range as I can when I buy, and it lasts me for years. So I&#8217;ve got, I don&#8217;t know if you&#8217;re familiar with them, I have an MSI gaming computer, because it&#8217;s got the extra fans in it. So it really, really works well when you&#8217;re doing a lot of processor intensive stuff. So it&#8217;s not just for gaming, because I do a bit of graphic design and I do a bit of this and I do a bit of that. So the extra fans make the world a difference.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I&#8217;ve got an MSI gaming computer, or an MSI computer. I have an external microphone. I&#8217;ve actually just recently bought an external webcam. I was using the webcam on the computer. It was perfectly fine. I&#8217;ve changed my setup to where I now have an external monitor mounted on the wall in my van. So when I settle in, I pull my 21 inch monitor out and I plug my computer into it and I&#8217;ve got this beautiful big monitor. I&#8217;ve got my external keyboard, and I&#8217;ve got my mouse.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:56] <strong>Nathan Wrigley:</strong> Okay. I mean it&#8217;s the bare essentials, isn&#8217;t it? I think we can all understand that. And then I think you mentioned the internet connectivity bit, which I suppose is also a crucial part of the tech. Because where I am, it&#8217;s a landline. I obviously have, you know, I&#8217;ve got a mobile phone, so there&#8217;s the cell signal, which will allow me to roam within Europe and North America and what have you, but there&#8217;s all the cost and everything associated with that. Where you go, I think it&#8217;s fair to say that you would quickly lose all manner of possibilities because the reception in Australia, you said is not that great in terms of the internet. So how do you overcome that? I think you said Starlink.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:30] <strong>Charly Leetham:</strong> Yes, Starlink. I kind of looked into it for a very long time. I was relying on our mobile data and using my phone as a hot link. But in Australia, I was joking with you about it when we started this call, I&#8217;m on the NBN here. And if anyone knows anything about the NBN, you&#8217;ll know that most Australians hate the NBN. It&#8217;s terrible. If it works, you&#8217;ve got to consider yourself lucky.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s great if you are in a capital city, but you go a hundred kilometers, and I&#8217;m being a little flippant when I say that, but I&#8217;m not too far wrong. Go a hundred kilometers away from a regional center and you&#8217;ve got nothing. There&#8217;s no radio signal. By radio signal, I mean mobile signal. You can&#8217;t make phone calls. You&#8217;ve got that little, there is no signal icon on your phone. You can&#8217;t actually get a connection. I say a hundred kilometers, maybe it&#8217;s 200, maybe it&#8217;s 250, but that&#8217;s not a very long way in Australia. It really isn&#8217;t.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I bought Starlink. I spoke to someone who was traveling along the way. And I actually want to come back to just the nomadic lifestyle when we&#8217;re done here, Nathan. And I met someone while they were traveling. They said, oh, Starlink, it&#8217;s wonderful. And it was still relatively new at the time. I&#8217;m like, oh, really? Are you sure? And he explained it to me like, oh. So when I got the car, I went and bought myself the Starlink and it&#8217;s fantastic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Oh my goodness, it&#8217;s so good. You&#8217;ve got to have power because the routers take power. You can just get, you know, one of the, I don&#8217;t know if you&#8217;ve got them there, the power stations, the USB power station that you charge up and you can run all your devices off it for a couple of hours. You could do that. I&#8217;ve seen people run them off of just car batteries with the clamps on the battery terminals. I&#8217;m an Australian, this is pretty normal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you&#8217;ve got to have the power for the router, to run the router. That then powers the dish and you&#8217;ve basically got, in inverted commas, uninterruptable internet for as long as your power lasts. For as long as you&#8217;ve got power, you&#8217;ve got uninterruptable internet. I have found where I&#8217;ve been, I house sat for my sister-in-law during winter, and her internet was terrible. So I went and got my Starlink out and threw it up and connected to it, and I had better internet. The connection speed on the internet on the Starlink versus her landline connection was like 10 times. I had 10 times better internet connection using Starlink than I did on a landline.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:50] <strong>Nathan Wrigley:</strong> With the Starlink technology, do you have to, so I really am ignorant of this. I mean I know it&#8217;s to do with satellites, and I know that you can have it bolted onto the side of your house, I guess if you live in a rural area where there is no regular landline. But yours is this sort of peripatetic, mobile version of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Firstly, do you have to point it at a particular part of the sky? Do you have to spend time lining it up or do you just have to, just plonk it in daylight? So you know, outside basically? And is it bulky, or is it the kind of stuff that you could throw in a backpack if you were nomadic in that sense? You know, you didn&#8217;t have wheels, you didn&#8217;t have a vehicle, you were just sort of backpacking around. So two things. Where do you have to point it and is it big?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:27] <strong>Charly Leetham:</strong> Okay. You asked some really great questions. I&#8217;m just going to say they are really, really inspired questions. The first thing I want to say is that the stuff that you see bolted onto the side of a house is typically the stuff that we would use when we&#8217;re out mobile. It&#8217;s the same hardware. They&#8217;ve just got mounting technology, or mounting systems, that will allow you to mount it to the house.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Quick story before I answer the second question about how big is it and all the rest of it. I had a version 2 Starlink, which, it would now be five or six years old, and it&#8217;s got a pole and it&#8217;s got the dish on it. And the dish is, I say dish, it&#8217;s a rectangular panel and you&#8217;ve got put it on a base so that it&#8217;s stable. That&#8217;s heavier than the version three. I had that last week, the week before I had a problem with it and I was a bit concerned. So I contacted Starlink and I said, listen, it&#8217;s doing this, here&#8217;s all my, being a tech I had all the diagnostics and stuff I&#8217;d done and I laid it all out and I said, and I just really want to say that I&#8217;m a little concerned. Because I&#8217;m traveling and I&#8217;m often outside of mobile range, I don&#8217;t want to get outside of mobile range, put my Starlink on and have it fail. I&#8217;m concerned that I&#8217;ve got an intermittent fault that is going to be a problem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And they said, no worries, we&#8217;ll send you a version 3, no charge. Because I&#8217;ve been with Starlink now, probably two, two and a half, no, two years now. And they just sent me the new hardware. So I&#8217;ve just upgraded to the version 3. So I can actually talk about both. So the version two is a little bigger. You&#8217;re probably talking, I&#8217;m just holding my hands up. It&#8217;s probably about 40 centimeters wide and 70 centimeters tall, the panel. It&#8217;s only 10 mil, five centimeters deep, I guess.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:06] <strong>Nathan Wrigley:</strong> It&#8217;s like the sort of size of a modestly big laptop screen. Something along those lines.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:13] <strong>Charly Leetham:</strong> Actually, it would be about the same size as my, I&#8217;m just looking at, it would be a little larger than my computer here. And I&#8217;ve got a 21, is this the 15? No, this is a 17 inch. This is a 17 inch monitor. So I&#8217;ve got a 17 inch laptop.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:24] <strong>Nathan Wrigley:</strong> Yeah, so we&#8217;re in the order of, got my hands out and I&#8217;m imagining how big that is. It certainly answers my backpacking question anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:32] <strong>Charly Leetham:</strong> Well, let me answer that question for you in a different way. There is now actually what they call a Starlink Mini, which is designed for backpacks. It&#8217;s designed to fit inside a backpack. It&#8217;s got a portable power supply so that you can go hiking, you can go backpacking and take your Starlink with you. I don&#8217;t know a lot about it. I do know that the plan that you put it on is a little different to what you would put our plans on, the plans you would use for ours, because it&#8217;s designed for you to be really, really mobile, not just mobile like we are. And it&#8217;s really light. It&#8217;s designed for a backpack.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that answers that question as well as like, you&#8217;ve got the technology. The version 3, and I wanted you to say this, the version 3 would probably be half as light as the version 2. So it&#8217;s much lighter. And one of the things that I really liked about the way this all works is that they&#8217;ve got ground mounts, right? So you just put them down on the ground, which is going to answer your next question. Do you need to position it? No. You just put it out. You&#8217;ve got to make sure it&#8217;s got a clear view of the sky. You&#8217;ve got to make sure that there&#8217;s no real obstructions, and that means no trees, no buildings. So nothing that&#8217;s going to sort of overshadow it as the satellites go over. And it will find the satellites for you. You don&#8217;t have to do anything. You just hit the button and it just works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:45] <strong>Nathan Wrigley:</strong> Miraculous really when you think about it. I mean, actually think about it. You&#8217;ve got this box that you just plonk out under the stars somewhere, and a bunch of, I mean, I&#8217;m just actually thinking about what I&#8217;m about to say, and it is ridiculous. There&#8217;s a bunch of satellites, so they had to go into space, moving around the planet. And they connect to the little box somehow send TCP IP packets all over the place, literally off the planet, which then get bounced down somewhere and, you know, end up in this case talking to me. Insane that any of that works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:19] <strong>Charly Leetham:</strong> So let me just add to that, at faster speeds than your standard internet will give you in Australia. I don&#8217;t know what it&#8217;s like in the US, I don&#8217;t know what it&#8217;s like in Britain, the UK, but it&#8217;s faster and more stable speeds than you get in Australia in general.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:36] <strong>Nathan Wrigley:</strong> Yeah, I actually, so it&#8217;s probably about six months ago I looked at Starlink. I&#8217;ve never seriously looked at it. I&#8217;m always just curious about it so I&#8217;ve ended up on the Starlink website. In terms of the speeds that you can get, they&#8217;re not comparable to what you can get through a landline. You can get significantly faster. But they are still impressive. And there&#8217;s nothing that day-to-day use wouldn&#8217;t be afforded by a Starlink package. I mean, maybe if you were sort of streaming 4K video left, right and center, maybe it would struggle in that scenario. But for any normal, and I&#8217;m doing air quotes, any normal use of the internet, more than enough. Absolutely incredible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so all of that stuff, absolutely amazing. I&#8217;m so impressed with everything that you&#8217;ve just said. It really, it speaks to me. I think there&#8217;s an awful lot in your life that I think, oh gosh, wish I was Charly. But I&#8217;m kind of curious then as to the kind of work that you do actually do, because you painted this picture of all these infinite possibilities and what have you. And now I&#8217;m turning the attention really to what is it that you do do? What are the kind of things that you&#8217;ve been able to create in your life in this nomadic way? What kind of work are you able to pull off?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:43] <strong>Charly Leetham:</strong> So what I do, what my business is, is I help businesses manage their tech. I like to sit between a business and they&#8217;re tech. Some people might call me their CTO, some people might just call me their technical team. I try to translate tech into plain English for business owners so that it takes all of that stress out of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When your business owner says, I need an email address, or I need a new email account, or whatever it is, and they&#8217;re talking to a provider, and the provider&#8217;s giving them all of the marketing guff, and all of the sales thing, and then it&#8217;s not working. So then they&#8217;re speaking to the technical people and the technical people are talking their jargon to them. It&#8217;s overwhelming for them, and they&#8217;re not spending time running their businesses when they&#8217;re dealing with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They need someone who can sit between them and that morass, if you like, and then say, okay, what is it you want? Oh, right, cool. Let me go and talk to people. Let me get you some answers and I&#8217;ll come back to you. So I often say, I don&#8217;t walk into a business and say, the answer is this, now what was the question? Which is what a lot of product salespeople would do. And I don&#8217;t want to, I&#8217;m not trying to bag salespeople here, because they&#8217;re needed. But I don&#8217;t go in and say, the answer is this, now what was the question? I go in and I say, okay, what is it you&#8217;re trying to do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don&#8217;t want to know about the technology you want to use. I want to know about what your business application is. I want to know, what is your input and what is your output? What are you trying to do here? Cool. Now, what systems do you already have? Let me go and investigate those systems. Let me see what they can do for you. Let me see if we can make those systems work to do what you want them to do. They can&#8217;t do it, okay, let me go and find some technology that we can plug in and we&#8217;ll work with what you&#8217;ve got.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The big thing I find with a lot of small businesses is, two things. They get caught with the bright shiny object syndrome. Oh, this new technology&#8217;s coming out. It&#8217;s going to make my business run well, it&#8217;s going to make me money. Technology never makes you money, by the way. Technology only ever helps you make money if you use it right. So they get caught with the bright shiny object syndrome. Or they get caught with the sales person said it would work. I didn&#8217;t understand what it did, and I bought this system and now it doesn&#8217;t interact with the rest of my systems and I&#8217;ve now got to put all these other processes and all these other things in places to make it work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s kind of where I sit. But I&#8217;m a tech as well, so I can make it work, I can troubleshoot it. I build websites, which is how I got into WordPress. I build websites. I fix websites. Like I actually also troubleshoot plugins. You know when we upgrade something or something&#8217;s not working and you&#8217;re getting all the error message? I&#8217;ll go and actually troubleshoot a plugin and say, oh, that plugin&#8217;s doing this. Can I fix it? No. Okay, I&#8217;ll send a support response off to the plugin provider and say, here&#8217;s all the logs, here&#8217;s what I&#8217;ve done, here&#8217;s what I&#8217;ve found. Can you get this fixed up for me? Or can you get it fixed up for us? Or, I&#8217;m really stuck because I&#8217;m getting to this point and it&#8217;s just not working and I don&#8217;t know where it&#8217;s going wrong, but I&#8217;m pretty certain it&#8217;s between here and here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The other thing I do in all of that is, when you get the two suppliers going, it&#8217;s them with the fingers going both ways. I tend to be the one that sits between it and mediates to try and get that sorted out. So that&#8217;s what I do, and I do that all remotely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:54] <strong>Nathan Wrigley:</strong> I&#8217;ve totally understood all of that. You know, you&#8217;ve got this, you&#8217;re sort of sitting in between, and being that kind of agent that helps people with the tech because they&#8217;re busy and they&#8217;re doing all the things and they haven&#8217;t got the time to gain that expertise in all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the follow up question, I guess from that, and it&#8217;s kind of leaning into your nomadic thing a little bit as well, is I guess that kind of work, the kind of work that you&#8217;ve got for yourself there, you can do it because, and I&#8217;m going to say this like it&#8217;s true and then you can correct me if I&#8217;m false, because you can do that when you have time available.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And what I mean by that is, it&#8217;s not like if you were working in an office and you need to be there from nine o&#8217;clock in the morning until five o&#8217;clock at night, because the telephone lines open up and you&#8217;ve got to field all this support. I&#8217;m guessing you&#8217;ve built a business where the channels of communication are a little bit more async than that. I don&#8217;t know, like an email exchange, or Discord, or Slack or whatever it may be. In other words, you can be in the car driving at 7:30 in the morning or 5:30 in the afternoon, or 3 or whatever it may be, because you are not needed at that exact moment by, I&#8217;m going to say your employer, but in this case, your clients. It&#8217;s more async than that. So I&#8217;ve said that like it&#8217;s true. Is that true?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:07] <strong>Charly Leetham:</strong> It is true for me. You are entirely correct. I&#8217;m sort of laughing because you&#8217;re like, oh, you can be driving in the car. The amount of times where I&#8217;ve been traveling with dad and my phone&#8217;s buzzed at me and I&#8217;ve gone, oh. And he goes, okay, hang on, I&#8217;ll pull over. Because we&#8217;ve got radio signal, we&#8217;ve got mobile signal. And he pulls over and I&#8217;ll fix the problem. Like, it might be a five minute fix and I will actually fix the problem then and we&#8217;ll keep moving. I&#8217;m sitting having a cup of coffee somewhere and one of my clients messages. And they message. I rarely spend time on the phone, or on video conferences with them. They know that the best way to get me is to book a time. I&#8217;ve trained my clients.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:44] <strong>Nathan Wrigley:</strong> That&#8217;s fascinating. So to you, that piece of the jigsaw puzzle is entirely obvious. And so it kind of just gets glossed over in your head. But you have created a business where that bit is the kind of foundational piece. If you had clients that wanted you on call 24/7, that really wouldn&#8217;t work because you&#8217;ve carved out a life for yourself where you don&#8217;t want to be on call 24/7. You want be able to do what you want to do when you want to do it, with the understanding that the clients are important, but the async nature of it is, they&#8217;ll message you. As soon as you can get to it, you&#8217;ll get to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I&#8217;m guessing that when you onboard these clients, there&#8217;s that whole education piece. This is what I do, this is the way we respond to support. You&#8217;ll get an answer with, I don&#8217;t know, 12 hours, 24 hours, whatever it may be. And it may be that somebody listening to this podcast is firefighting all the time and they kind of haven&#8217;t figured that piece out. So I think that&#8217;s really interesting that you&#8217;ve got that, but yet it&#8217;s self-evident to you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:39] <strong>Charly Leetham:</strong> I think I want to also add to that is that my clients trust me. So there might be point in time where I am always on for that client for a while at least. And when, I&#8217;m always on for them. If they message me, I will, and I do this for all of my clients actually. If they message me and say, hey, this is a problem, and I&#8217;ve got access, I actually have the ability to respond to them. I will normally respond to them and say, I&#8217;m letting you know, I&#8217;ve seen this on the road today, or I&#8217;ve got meetings all day. I&#8217;ve got this, you are in my queue, I&#8217;ll get to you as soon as I can. And they know that actually means not tomorrow, not the next day, not, whenever it is. I really do mean as soon as I get a space available, they&#8217;re going to get my attention. We&#8217;ve built that trust relationship.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:26] <strong>Nathan Wrigley:</strong> I think probably that is another foundational piece of your business. Without that trust, that&#8217;s going to be difficult to onboard clients. Do you tend to gather clients by word of mouth more, or do you have a marketing website where people onboard to you and you have to build that trust up over time? Or is it more a case of your clients recommend your services to other clients who then bring in that trust with them, if you know what I mean?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:49] <strong>Charly Leetham:</strong> Mostly column A, little bit of column B and more of column C. So yeah, it&#8217;s a bit of everything. I am actually just starting to ramp up my marketing as I start to get more comfortable with what I&#8217;m doing. And it sounds strange, right? Because I&#8217;ve been doing it for a while, but I&#8217;m starting to get more comfortable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So now I&#8217;m starting to ramp up my marketing, because I can talk to people about how it works and what it does. And I have very frank conversations. It&#8217;s one of my things is to be, make sure that I am upfront, I am frank, I am honest about what goes on. I don&#8217;t like. I can talk salesy. I prefer not to. I prefer to be plain English and real world with people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think the other thing because, if we are talking to your audience, the other thing that I really wanted to highlight there is that I have had clients sack me because they don&#8217;t like the way I work. That&#8217;s not a reflection on me. That&#8217;s not a reflection on the surface I provide. It was a reflection on the relationship that was developed, and that relationship didn&#8217;t work for them. I&#8217;m good with that. I hope I found someone that can actually work with them the way they need them to work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The other side of that is I have actually suggested to some clients that they would be better off with another provider. And as a service provider, that&#8217;s something that we have to be utterly comfortable with. Being able to say this client is not the client that works for us. We are going to spend too much time, too much energy, too much money supporting them, than we are going to get out of that relationship. It is commercial, and it sounds mercantile, and it sounds cutthroat, and it is. But by doing that, what you&#8217;re also doing is making space for another client to come in that is actually going to fit your ideals better, it&#8217;s going to fit the way you work better. You&#8217;re also allowing that client to find a provider that works better for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:39] <strong>Nathan Wrigley:</strong> This has been such an interesting conversation Charly. This is your life, right? So it&#8217;s just oh, this is the way I wake up and I do these things and what have you. But it&#8217;s in such contrast to my life at the moment, and yet there&#8217;s so many bits of the jigsaw puzzle that you&#8217;ve just described that are really fascinating to me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I would imagine there&#8217;s going to be quite a lot of people listening to this who have intuitions that, I got into tech and I got into building WordPress websites so that I too could have a little bit more of that freedom. Maybe even going as far as you&#8217;ve done to make it more nomadic. So they own their own vehicle and potter about all over the place. Or they backpack for three months of the year. It&#8217;s just fascinating. And because it&#8217;s your life, it probably doesn&#8217;t seem that extraordinary, but from where I&#8217;m sitting, totally remarkable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:24] <strong>Charly Leetham:</strong> No, it doesn&#8217;t seem like it&#8217;s every day to me. I will say that I think I have a concept of how blessed I am being able to do it. I try not to become so blase about, oh, this is just the way my life is. It&#8217;s yeah, I worked hard to get it to this point. So I&#8217;ve got to accept that I&#8217;ve put in a lot of work to get there, but I&#8217;ve also got to accept that there is a lot of blessings that have come from it. And I thank the Lord every day for the life that I have.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:50] <strong>Nathan Wrigley:</strong> Well Charly, we&#8217;ve reached the 45 minute mark, and although we had a whole range of different things that we could talk about, I hope that you are happy that&#8217;s where we ended up. We talked mostly about digital nomadism. We didn&#8217;t really stray into WordPress too much, but what a fascinating conversation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Maybe we&#8217;ll have a conversation another day, and lean in heavily to the WordPress side of things, but digital nomadism it was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Charly, where can people reach you? And I don&#8217;t mean that in a physical sense because obviously we have no idea where you&#8217;re going to be, but if they were to reach out online, or try and find you on a social network, or a website or whatever it may be, where would be some of the places where we could find you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:27] <strong>Charly Leetham:</strong> The best place to find me is on my website. If you go to askcharlyleetham.com, and then at the end of it put /connect-me. So connect to me with the dashes between it, you will get wherever you can find me. All the networks I&#8217;m on. You can book a free 30 minute breakthrough session. And guys, if you just want to come and talk to me about how you can set up your business, or the things that you&#8217;re doing and the things that you need to consider, I&#8217;d happily talk to you for 30 minutes about that. That&#8217;s not a problem at all. And just so you know, I&#8217;m on Facebook, I&#8217;m on X, I&#8217;m on LinkedIn. I&#8217;ve got a YouTube channel.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I do a podcast every other day. I do a podcast, Making Tech Easy for Small Business Owners. It&#8217;s a 10 to 15, or 15 to 20 minute episode about something tech, and tries to try to simplify it out. I do interviews every now and again, much like this that I put up on there. I&#8217;m on Rumble, I&#8217;m on Odyssey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:22] <strong>Nathan Wrigley:</strong> I will link to all of those different bits and pieces. Anything that we&#8217;ve mentioned just then I will put into the show notes. So if you head to wptavern.com. Search for the episode with Charly in it. And Charly, I should have said at the beginning is not a typical spelling, it&#8217;s c h a r l y. So if you search for that this episode will surface.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So absolutely fascinating, Charly. Thank you so much for chatting to me today and good luck. I hope that you managed to get wherever it is that you are going in the days, weeks, months, and years to come. Thank you so much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:52] <strong>Charly Leetham:</strong> Thank you Nathan. I have had an absolute ball. I&#8217;ve really enjoyed this conversation, and I love talking about the life I&#8217;ve built, so thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://askcharlyleetham.com\">Charly Leetham</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Charly’s journey with technology spans over four decades, from tinkering with amateur radio as a teenager in Australia, to working in electronic engineering, and eventually building a career in WordPress and small business tech support. With a background in field service, sales, and running retail businesses, Charly pivoted to helping people with their websites and tech needs right around the time WordPress was in its infancy. Today, nearly 20 years later, she’s still involved in the WordPress ecosystem, providing troubleshooting, support, and plain-English tech translations for business owners who need their digital lives demystified.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in this episode, we’re focusing less on her technical skills and more on her unique lifestyle. Charly is a true digital nomad, someone who’s not bound to a fixed address, but instead lives and works from a camper van fitted with a Starlink system, traveling, and working, all over Australia.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about what it was like to embrace remote working long before it was commonplace, and how she built a business that supports complete flexibility. We explore both the upsides of the digital nomad life, the freedom to travel, spend quality time with family, and work from beautiful locations, as well as the tradeoffs, such as limited space and having to ruthlessly prioritise her belongings.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Charly discusses the essential tech setup that empowers her nomadism: from laptops and microphones to how Starlink satellite internet lets her work reliably from almost anywhere, even in places with little or no mobile signal. There’s practical advice on working with clients, so support can happen on her schedule, and reflections on building a business that matches her values, even if it sometimes means saying goodbye to clients who aren’t the right fit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever imagined trading your desk for the open road, or wondered what’s technologically and personally possible as a remote WordPress worker, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://askcharlyleetham.com\">Charly&#8217;s website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Charly can be found on the following platforms:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.facebook.com/AskCharlyLeetham/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/ask_charly_leetham\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/charlyleetham\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://x.com/yourbizmgr\">X</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://starlink.com\">Starlink</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://askcharlyleetham.com/rise-and-shine-your-daily-tech-boost/\">Charly&#8217;s podcast</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jan 2026 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"HeroPress: How Art School Led Me To Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://heropress.com/essays/how-art-school-led-me-to-web-design/#utm_source=rss&utm_medium=rss&utm_campaign=how-art-school-led-me-to-web-design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14108:\"<img alt=\"Pull Quote: The open web is about inclusion, connection, and community.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3026/01/012726.webp\" width=\"1024\" /><section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px;\">\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/01/erapport-heropress.m4a\"></audio><figcaption class=\"wp-element-caption\">Here is Emily reading her own story aloud.</figcaption></figure>\n</section>\n\n\n\n\n<p>There are two, possibly conflicting, values inherent to my work and general enjoyment of life &#8211; collaboration and autonomy.</p>\n\n\n\n<p>My background is in fine art. I studied painting in Chicago and New York in the mid-90s. I very much saw the web as another pliant artistic medium to work with, as well as a non-traditional way to show my artwork (since I didn’t have gallery representation). I created fun websites for myself, cropping my photographs for backgrounds and custom buttons, assembling content within tables, interviewing inanimate objects and making animated GIFs. And, yes, I did display an animated hit-counter and a “Built for Netscape Navigator” badge &#8211; if that helps you visualize this cacophony.</p>\n\n\n\n<p>Living in capitalism, I was also governed by self-interest. I thought I might apply my creative abilities to the earning of a living wage since being a “professional artist” seemed to involve more social skills and luck than I could depend on.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-checking-out-the-web\">Checking Out The Web</h2>\n\n\n\n<p>Aside from one class I took in college that covered HTML5 and Macromedia Director, I mostly taught myself by reading books by <a href=\"https://en.wikipedia.org/wiki/Lynda_Weinman\">Lynda Weinman</a> and Peachpit Press and building things. Learning HTML then, and later CSS, was powerful and a much more accessible entry point for a person like me &#8211; not especially technical but able to endure lots of trial and error to figure out how to make things work (eventually).</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>After graduating, I did not get a job at a prestigious design firm. </p>\n</blockquote>\n\n\n\n<p>I was a terrible designer and I didn’t know how to dress or behave in a corporate environment. I probably still don’t. Instead, I waited tables and made websites for friends and fellow artists. After a few years of this, I started to wonder what I was doing with my life and whether I would ever be an artist myself. I volunteered to work with a small neighborhood arts group. I knew they needed a website, so I made one and later worked with a local web development company to migrate it to their proprietary CMS for our volunteer group. Finding I had an aptitude for coordinating people, creating content, and assembling something from nothing &#8211; being a web designer began to glimmer as a possibility in the back of my mind. I thought about pursuing arts administration but while at a nonprofit bootcamp had the epiphany that I needed to do my own art and not just support other artists. (Aside: This was to become the underlying struggle of my adult life, <a href=\"https://dictionary.cambridge.org/us/dictionary/english/wip\">#WIP</a>.) </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-moving-on\">Moving On</h2>\n\n\n\n<p>Back to waiting tables, I built a few more sites for friends who had started their own businesses. These early sites were all made with HTML, CSS, and a sprinkle of JavaScript. After a few projects, I began to realize that if I had to be the master of all content, I would quickly max out my capacity to take on new work. This was around 2010. I had recently met another web designer who lived near me in Chicago &#8211; <a href=\"https://heropress.com/essays/doing-what-i-want/\">Becky Davis</a>. Becky also ran the Chicago WordPress MeetUp and, through her, I started my journey into WordPress theme development. I purchased “<a href=\"https://digwp.com/\">Digging into WordPress</a>,” the non-official WordPress manual created by <a href=\"https://chriscoyier.net/\">Chris Coyier</a> and <a href=\"https://wpfounders.com/wordpress-plugin/jeff-starr-perishable-press/\">Jeff Starr</a>. What could go wrong?</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Learning a new technology came with its own challenges.</p>\n</blockquote>\n\n\n\n<p> I landed my first non-friend client, hosted them on GoDaddy, and was almost immediately felled by some nefarious exploit. So, I figured out how to resuscitate a hacked site, I learned from bitter experience that I must always (always) have a backup, and I experimented with various commercial themes as I tried to figure out how to build a child theme in this new frontier of PHP code. It’s not as perilous for newbies now; hosts understand how to manage WordPress better and there is a ton of excellent documentation on how to do things (necessary for developing for the complexity and popularity of WordPress today).</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-getting-a-real-job\">Getting A &#8220;Real&#8221; Job</h2>\n\n\n\n<p>I worked on my own, slowly building up a business that supported me, but I felt that I was hitting a capacity ceiling again. This time, PHP programming was the biggest challenge. In 2015, I decided I was going to get a “real” job. My hope was that within a company, I would work directly with “real” programmers and develop my skills. I put “real” in quote marks because &#8211; people are just people, with flaws and failures like anyone else. Being a freelancer isn’t a “not real” job. There’s just pros and cons to each situation. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Also, even real programmers don’t understand semantic HTML or CSS.</p>\n</blockquote>\n\n\n\n<p>The only designer on a very small team with remote developers, I was still working with clients and building websites with little direction. My work hadn’t really changed; I just had more pressure and no capacity to choose what projects I wanted to work on. I listened to lots of podcasts during this time &#8211; mainly <a href=\"https://bigwebshow.fireside.fm/\">Jeffrey Zeldman’s <em>The Big Web Show</em></a>, <a href=\"https://thewebahead.net/\">Jen Simmons&#8217; <em>The Web Ahead</em></a>, <a href=\"https://userdefenders.com/\">Jason Ogle’s <em>User Defenders</em></a> &#8211; these inspired me with what was possible and what was important. I wasn’t finding this meaning in my day to day work however and that was a problem for me.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-back-to-my-roots\">Back To My Roots</h2>\n\n\n\n<p>One day, walking back from the neighborhood grocery store, I saw a storefront for rent. It had high ceilings, big front windows and lots of wall space. Sure, the main view was a giant empty lot but this felt like an opportunity to reclaim some of that autonomy I was missing and maybe pursue my artwork again. I gave notice at my job and invested some of my savings into renting the commercial space. </p>\n\n\n\n<p>From 2018 to 2022 I ran the storefront as a <a href=\"https://eatpaintstudio.com/\">gallery</a> showing emerging artists as well as my own work. I hosted artist talks, local musicians, and generally interfaced with the public. I also rebuilt my web design business in order to support this financially unprofitable venture. Though enjoyable, especially curating, I learned that running a gallery is also marketing, sales, writing, public speaking, and lots of people management. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>So, I had effectively given myself two challenging jobs for the price of one with still less time to make my own art.</p>\n</blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p></p>\n</blockquote>\n\n\n\n<p>Although I wasn’t painting as much as I wanted to, in my web development work, I found that I had learned something working at a design firm with other developers after all. I no longer relied on commercial builder themes. I was coding custom themes with Underscores &#8211; albeit haltingly, with many Google searches. I started to follow more WordPress folks on the now extant Twitter, people like <a href=\"https://aurooba.com/\">Aurooba Ahmed</a>, <a href=\"https://wptavern.com/podcast/146-frank-klein-on-redesigning-wordpress-the-shift-to-block-based-systems\">Fränk Klein</a>, <a href=\"https://heropress.com/essays/blessings-and-curses-of-turning-your-hobby-into-a-career/\" id=\"4948\">Carolina Nymark</a>, <a href=\"https://nickdiego.com/\">Nick Diego</a>, <a href=\"https://www.briancoords.com/\">Brian Coords</a>, <a href=\"https://bph.social/\">Birgit Pauli-Haack</a> and many others. I was staying current on WordPress news and through the conversations online, felt more a part of a community than I ever had at my former job.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-refocusing\">Refocusing</h2>\n\n\n\n<p>By March 2020, the pandemic mostly meant the gallery was closed. I couldn’t host public events. Without openings, there weren’t as many sales. Lots of neighborhood businesses closed. The vacant lot across the street that had promised to be a new apartment building remained a weedy lot with half-finished cement foundations and an increasingly elaborate display of graffiti. In 2022, the building I was renting space in was sold. I decided it was time to retrench. I went back to my home office and focused on web development work.</p>\n\n\n\n<p>When <a href=\"https://jonathanbossenger.com/\">Jonathan Bossenger</a> tweeted that he was looking for a designer to provide a <a href=\"https://alwaysopen.design/sendig-design-in-public/\">block theme</a> that he could code up in a tutorial, I eagerly volunteered. It was still early days for block themes and they required a big mental shift from PHP development. A lot of traditional developers were unhappy and vocal about it. Although we didn’t complete the block theme project, it was exciting to connect with people in WordPress in other parts of the world and to feel that we were all invested in learning together. I’d like to try to build that theme at some point  &#8211; I mean, I got the domain so I have to, right?</p>\n\n\n\n<p>For a few years, I kept to a hybrid theme approach, adding theme.json to a custom Underscore theme. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I teetered on the edge of going for a pure block theme up until last year. Now, I believe it’s absolutely doable even for complex websites. </p>\n</blockquote>\n\n\n\n<p>With block themes, I can now set aside the several, weighty PHP books I had intended to study, and remain a generalist. If my development / Googling time is reduced, I can explore other aspects of web design that are interesting and fulfilling to me &#8211; like content strategy and web accessibility. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-where-i-go-from-here\">Where I Go From Here</h2>\n\n\n\n<p>WordPress has enabled me to build a career for myself and to wholly determine my own path. It’s also, as self-employment options go, relatively profitable. The overhead is low, there’s a lot of avenues to follow a specific interest or stay broad, collaboration opportunities, and above all to keep learning (if you’re into that).</p>\n\n\n\n<p>Web design and development in 2009 was different then it is in 2026. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I’m not sure I could do today what I was able to do 20 years ago as a mostly non-technical person. </p>\n</blockquote>\n\n\n\n<p>Node, build processes, GitHub, tech bros, (not that those things are synonymous) are a little off-putting. The best way to learn is to do and, if there are too many prerequisites, you don’t.</p>\n\n\n\n<p>But, WordPress is large and contains multitudes. The majority of people I’ve met through WordPress genuinely care about what they are building, why, and for whom. The open web is about inclusion, connection, and community &#8211; so, whether you are writing a blog post, contributing to a theme or plugin, or volunteering for WordPress in some way, everything we do matters. That cumulative effort is tangible and it’s a unique element of what WordPress is at its essence.</p>\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;\"><div class=\"kb-row-layout-wrap kb-row-layout-id8325_c9edfb-11 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top\">\n\n<div class=\"wp-block-kadence-column kadence-column8325_8cedb0-ab\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading8325_af4f11-66 wp-block-kadence-advancedheading\" id=\"work-environment\">Emily&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Emily for a view into her development life and this is what she sent!</p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img alt=\"Emily Rapport&#8217;s Desk\" class=\"hotspots-image skip-lazy\" height=\"1920\" src=\"https://heropress.com/wp-content/uploads/2026/01/erapport-office-scaled-1.webp\" width=\"2560\" />\n	</div>\n\n\n\n\n<p class=\"kt-adv-heading8325_2fc484-1d wp-block-kadence-advancedheading has-theme-palette-9-background-color has-background\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div></div>\n\n</div></div></section>\n\n<p>The post <a href=\"https://heropress.com/essays/how-art-school-led-me-to-web-design/\">How Art School Led Me To Web Design</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jan 2026 13:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Emily Rapport\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: How WooCommerce’s Open Source Model Spawns Innovation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://openchannels.fm/how-woocommerces-open-source-model-spawns-innovation/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"Looking at WooCommerce’s open source nature, we learn  how community contributions drive innovation, foster flexibility, and ensure collaborative growth in ecommerce.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jan 2026 09:35:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Open Channels FM: Fostering a Culture of Positive Learning in Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://openchannels.fm/fostering-a-culture-of-positive-learning-in-accessibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:232:\"Accessibility in digital design should be an engaging process, fostering a supportive learning culture. When approached with empathy, it transforms obligation into enthusiasm, promoting effective learning and advocacy for inclusion.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Jan 2026 14:56:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Open Channels FM: Underfunded PHP Tools: A Global Business Threat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://openchannels.fm/how-an-overlooked-php-tool-keeps-the-internet-running/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"In this episode of Open Web, host Anne chats with Juliette, the sole maintainer of PHP_CodeSniffer. They dive into the challenges of maintaining crucial open-source projects, funding issues, and AI\'s impact on software development.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Jan 2026 10:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: What a Week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2026/01/what-a-week/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3576:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">There are decades where nothing happens, and there are weeks where decades happen</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">No attribution, <a href=\"https://quoteinvestigator.com/2020/07/13/decades-weeks/\">but fun Quote Investigator dive</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Sorry for dropping off the daily blogging train; it just turned out to be a week of pleasant surprises and life-changing events. I’ll share with y’all the second-most exciting one. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I know I’ve been pushing you all to learn the AI coding stuff as deeply as possible, and I have been doing some myself, my favorite a few years ago, a script to count when we had too many words in a presentation slide, but I knew <a href=\"https://code.claude.com/docs/en/overview\">Claude Code</a> was something different and better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, I fell into the trap of bookmarking and downloading tens of hours of Claude Code tutorials and not installing the thing itself. And work has been busy! My colleague <a href=\"https://davemart.in/\">Dave Martin</a> was hosting an internal livestream. I joined late, then had to leave because an important call came in. I decided to forget it all, throwing caution to the wind, and just install Claude Code and play with it without reading anything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The next 24-36 hours are a bit of a blur. I haven’t locked into a multi-day coding session fueled by energy drinks, sugar, and cheesy carbs since my early 20s! There were some interruptions for previous commitments, but I basically became addicted to the feeling of that steep learning curve. Every minor annoyance or workflow became an opportunity to create new software in languages I’d never touched before. </p>\n\n\n\n<p class=\"wp-block-paragraph\">It also really rewired my brain, even in how I talk. (Found myself saying “thinking” after a colleague’s question. <img alt=\"😂\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f602.png\" style=\"height: 1em;\" />) I’m thinking about problems in a much more structured manner now, how to divide and chunk tasks, and provide appropriate context and skills. I really do feel like my brain is being terraformed a bit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So far I&#8217;ve written scripts or apps for grabbing daily summaries from my calendar, spinning up new projects and syncing them with Github, switching between Brave tabs better, an app to search and launch Brave tabs quickly&#8230; </p>\n\n\n\n<p class=\"wp-block-paragraph\">Did you know that macOS Preview regressed and no longer lets you export a single page of a PDF as an image? I have an app that does that. What do I do with it? Do I open source it? Am I a Mac App developer now? Do I want to support this for other people forever? Should I even put it in source control? Or publish a set of tests and prompts, <a href=\"https://www.dbreunig.com/2026/01/08/a-software-library-with-no-code.html\">as Drew Brenig did with whenwords</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s a strange and wonderful time to be a lover of software and computers. A little bit of code goes a long way. I&#8217;m at a <a href=\"https://www.ccl.org/leadership-programs/leadership-at-the-peak-training-for-senior-executives/\">CCL leadership training</a> this week so offline during the days and exhausted at night but I gotta keep all those little bots running.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Jan 2026 08:53:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: AI Experiments, WordPress 7.0, Gutenberg 22.3 and 22.4, Playground for theme builders — Weekend Edition 354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"https://gutenbergtimes.com/ai-experiments-wordpress-7-0-gutenberg-22-3-and-22-4-playground-for-theme-builders-weekend-edition-354/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33252:\"<p class=\"wp-block-paragraph\">Hi there! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, it&#8217;s been a while. Did you miss me? I hope you and yours had a great start to the new year, and I wish you a healthy, happy and prosperous 2026. I am infinitely grateful you are a reader on this site and newsletter. Thank you for your ongoing support.</p>\n\n\n\n<p class=\"wp-block-paragraph\">My Year-End vacation directly merged into an intensive training and exploration into AI-first software development. It was eye-opening to say the least and entirely liberating. Ideas can be prototyped fairly quickly and their implementation is not stifled by the level of my personal coding skills. Success heavily depends on a clear vision, architectural consistency and radical quality control.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although there was a downturn in publishing over the holidays, I found a plethora of posts and plugins again. This edition catches up on most of it. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Looking forward to going through our connecting with you in our eighth year of Gutenberg Times.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Aaron Jorbin</strong> published the <a href=\"https://make.wordpress.org/core/2026/01/20/wordpress-6-9-1-release-schedule/\"><strong>WordPress 6.9.1 Release Schedule</strong></a>. RC1 will be next week on January 29, 2026, and the final release on February 3, 2026. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The GitHub <a href=\"https://github.com/orgs/WordPress/projects/266\">project board of WordPress 6.9.x Editor Tasks</a> lists the PRs that will make it into the release in the <em>Done</em> column. Other core updates are available in this <a href=\"https://core.trac.wordpress.org/tickets/minor/workflow\">trac report</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-7-0\">WordPress 7.0</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jeff Paul</strong> <a href=\"https://make.wordpress.org/core/2026/01/22/announcing-the-wordpress-7-0-release-squad/\">announced the <strong>WordPress 7.0 release squad</strong></a>, led by Gutenberg&#8217;s chief architect <strong>Matias Ventura</strong>. It&#8217;s a team of veterans and newbies spread around the globe.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rae Morey</strong>, The Repository, also reported with more background and details on the state of real-time collaboration feature in her post: <strong><a href=\"https://www.therepository.email/matias-ventura-named-wordpress-7-0-release-lead-as-contributors-close-in-on-real-time-collaboration-approach\">Matías Ventura Named WordPress 7.0 Release Lead as Contributors Close In on Real-Time Collaboration Approach</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 will run your <strong>post editor inside an iframe by default,</strong> so now&#8217;s the time to test your blocks for compatibility. If you&#8217;re still registering blocks with apiVersion 2, you&#8217;ll start seeing console warnings in WordPress 6.9. The main gotcha: your document and window references won&#8217;t work inside an iframe. You&#8217;ll need to switch to <code>useRefEffect</code> with <code>ownerDocument</code> and <code>defaultView</code> instead of globals. You can find more details in the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/block-migration-for-iframe-editor-compatibility/\">official migration guide</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In his post <a href=\"https://www.unleash-wp.com/blog/wordpress-7-0-enforces-block-api-v3-why-existing-blocks-begin-to-fail/\"><strong>WordPress 7.0 Enforces Block API v3: Why Existing Blocks Begin to Fail</strong></a>, <strong>Benjamin Zekavica</strong>, core-team rep,  also provides some tips and Tricks. Custom blocks that target admin selectors like <code>.wp-admin</code> or <code>.editor-styles-wrapper</code>, rely on global <code>document</code> queries, or initialize libraries globally and now fail consistently. Reading through the article, it seems this is mostly related to agency work, with bespoke theme and block development on sites of the early block era.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gutenberg-releases\">Gutenberg releases</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Gutenberg 22.3 and 22.4 have been released. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Hector Prieto</strong> highlights in his release post <a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/\">Gutenberg 22.3 (December 17)</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/#dedicated-fonts-page-for-easier-typography-management\">Dedicated Fonts page for easier typography management</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/#image-editing-improvements\">Image editing improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/#responsive-grid-block\">Responsive Grid block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/#other-highlights\">Other highlights</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>JuanMa Garrido </strong>led the 22.4 release together with <strong>Anne McCarthy</strong> and they had to tame quite a large changelog with more than 400 PRs merged by 77 contributors, of whom 16 were first-timers! It must have been difficult to pick the top highlights for their release post <a href=\"https://make.wordpress.org/core/2026/01/22/whats-new-in-gutenberg-22-4-20-january/\">What’s new in Gutenberg 22.4? (20 January)</a>:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/#classic-and-hybrid-theme-support-for-the-font-library\">Classic and Hybrid Theme Support for the Font Library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/#pattern-overrides-custom-block-support\">Pattern Overrides: Custom Block Support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/#image-block-focal-point-controls\">Image Block: Focal Point Controls</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/#block-visibility-based-on-screen-size-experimental\">Block Visibility Based on Screen Size (Experimental)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/#other-notable-highlights\">Other Notable Highlights</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\">Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2</a> with <strong>JC Palmes</strong>, WebDev Studios</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Justin Tadlock</strong>&#8216;s <a href=\"https://developer.wordpress.org/news/2026/01/whats-new-for-developers-january-2026/\"><strong>January developer roundup</strong></a> covers new responsive Grid blocks with adjustable columns and widths, an easy-to-use Fonts admin screen, and experimental PHP-only block registration with full metadata. New tools include an image cropper and an updated Abilities API client. The Breadcrumbs block is on track for WordPress 7.0, and Navigation overlay tests are allowing template part assignments. Playground now features a DevTools extension and a new dashboard interface.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;ve ever watched a client accidentally drag your carefully crafted block layout into chaos, <strong>Eric Karkovack</strong> has your back. In his guide on <a href=\"https://speckyboy.com/protect-wordpress-block-layouts\"><strong>How to Protect WordPress Block Layouts From Accidental Changes</strong></a> he walks you through two built-in WordPress safeguards: save your layouts as exportable block patterns you can restore anytime, then use the Lock feature to let clients update content without rearranging your design. You can even lock entire Group blocks at once for extra security. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Wes Theron</strong> demonstrates the <a href=\"https://www.youtube.com/watch?v=61xb2zfep28\"><strong>Details block for WordPres</strong></a>s, showcasing how you can create collapsible sections perfect for FAQs, definitions, transcripts, and supplemental content. The tutorial covers inserting the block, navigating with List View, and customization options for keeping pages organized and tidy. Theron walks through practical examples showing how the accordion-style functionality helps hide and reveal content on demand, offering a native WordPress solution for managing long explanations without cluttering the page layout.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Matthew Cowan</strong> released <a href=\"https://wordpress.org/plugins/find-blocks-patterns-shortcodes/\"><strong>Find Blocks, Patterns &amp; Shortcodes</strong></a>, a plugin that helps users locate Gutenberg blocks on WordPress sites and allows CSV export for content audits. The tool includes batch processing, post-type filtering, synced pattern searches, and WP-CLI support, with sortable results tables. It also features security measures like rate limiting and XSS prevention, and improves accessibility for screen readers and keyboard navigation.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">In his post <a href=\"https://kinsta.com/blog/magic-effects-wordpress-core-blocks/\"><strong>How to create magic effects in WordPress with core blocks</strong></a>, <strong>Joel Olawanle</strong> demonstrates creating cinematic effects using only WordPress core blocks, focusing on the Cover block&#8217;s layering capabilities. In his tutorial, Olawanle covers fixed backgrounds for parallax simulation, scroll snap with minimal CSS, creative typography using duotone filters and blend modes, and multi-layered depth through nested Group blocks. Olawanle emphasizes building premium visuals while maintaining performance through native blocks, avoiding heavy page builders and keeping sites lightweight, accessible, and fast.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Matt Cromwell</strong> created the <a href=\"https://wordpress.org/plugins/synced-pattern-popups/\"><strong>Synced Pattern Popups</strong></a> plugin, which turns WordPress&#8217;s reusable synced patterns into modal popups that load content with AJAX and use smart caching. Triggers can be activated using simple class or href attributes, and third-party blocks display correctly with good styling. The plugin supports accessibility with keyboard navigation and ARIA support, has an optional AI-powered summary feature, and works with WordPress 6.9&#8217;s Abilities API for automated workflows—all without any setup needed.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Justin Tadlock</strong>&#8216;s <a href=\"https://wordpress.org/plugins/x3p0-media-data/\"><strong>Media Data plugin</strong></a> reveals hidden information from uploaded files—like camera settings, audio tags, and video codecs—through easy-to-use editor blocks that need no coding. Photographers can show exposure details below images, podcasters can add artist info next to players, and archivists can log file sizes and lengths, all using WordPress&#8217;s existing metadata with customizable labels and complete block theme integration. Users of WordPress 6.9 also benefit from Block Bindings support for improved workflows.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Troy Chaplin</strong>&#8216;s <a href=\"https://wordpress.org/plugins/priority-plus-navigation/\"><strong>Priority Plus Navigation</strong></a> plugin enhances the core Navigation block by managing menu items more efficiently. When space is limited, it moves items into a dropdown for better accessibility. Using <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver\">ResizeObserver</a>, it monitors width and changes submenus into a &#8220;More&#8221; dropdown while following core overlay settings. The plugin fully supports theme.json for customizing dropdown styles, hover effects, and separators, and ensures keyboard navigation and screen reader compatibility.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Kadim Gültekin</strong> created <a href=\"https://wordpress.org/plugins/block-style-modifiers/\"><strong>Block Style Modifiers</strong></a> plugin to enhance Gutenberg&#8217;s block styles with additional CSS classes that can layer together. Developers can easily add modifiers for specific blocks or globally using simple PHP functions and can reorder these classes in the editor sidebar. An experimental companion pack showcases hover effects, responsive utilities, and overlay treatments.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">In his <a href=\"https://kau-boys.com/4348/advent-calendar/campaign-archive-block-for-mailchimp-show-an-archive-of-your-newsletter-on-your-website\">post</a>, <strong>Bernhard Kau</strong> presents his <a href=\"https://wordpress.org/plugins/campaign-archive-block-for-mailchimp/\"><strong>Campaign Archive Block</strong></a> plugin, which fixes Mailchimp&#8217;s complicated archive problem by creating dynamic API-driven listings instead of manual archives. Annoyed with Mailchimp&#8217;s clunky JavaScript and formatting issues, Kau developed a plugin that automatically pulls archives and can share API credentials with other Mailchimp plugins. Users can set the display count, choose between title and subject, and include sender metadata, reducing the need for manual updates after sending emails.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Johanne Courtright</strong> released <a href=\"https://groundworx.dev/resources/groundworx-core-1-3-0-introducing-dynamic-flow-static-flow-featured-posts/\"><strong>Groundworx Core 1.3.0 with Dynamic Flow,</strong></a> a query-powered carousel filtering posts by taxonomy or keywords with curated mode for manual selection, Static Flow for building custom slide carousels with any blocks and media pause controls, and Featured Posts displaying content in responsive grids. The update adds responsive breakpoint systems across layouts, block transforms between post disp</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In my latest post, I show <a href=\"https://wordpress.com/blog/2026/01/05/build-a-wordpress-theme-demo-with-playground-blueprints/\"><strong>how WordPress Playground Blueprints turn theme demos</strong></a> from basic setups into fully functional sites in a browser. Developers create demo content locally, export it, and host assets on GitHub to avoid CORS issues. They then make JSON files that define installation steps, including content import and site setup. The WordPress Importer automatically resizes media and updates URLs. Using this method theme builders can share  links that launch complete working demos with sample content, navigation, and settings preserved.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">On the Developer Blog, you can read my article <a href=\"https://developer.wordpress.org/news/2026/01/streamlining-block-theme-development-with-wordpress-playground-and-github/\"><strong>Streamlining block theme development with WordPress Playground and GitHub</strong></a>, where I explained a simple workflow using WordPress Playground, the Create Block Theme plugin, and GitHub to connect visual design with version control. Designers can work entirely within browser-based Playground instances, using CBT&#8217;s <strong>Save Changes</strong> to update theme files and submit pull requests to GitHub—without needing to use a terminal or code editor. This method makes it easier for anyone to work on block themes while upholding professional development standards. It&#8217;s the blog post to the presentation I gave at WordCamp Gdynia last September. The video is now <a href=\"https://wordpress.tv/2025/09/30/streamlined-block-theme-development-using-wordpress-playground-and-github-for-no-code-version-contr/\">available on WordPressTV</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n<div class=\"ng-block-f3269d79ac43a08e wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-f1a41fb6c8829794 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-947b3409d98ebf66 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Carlo Daniele</strong> explores the<a href=\"https://kinsta.com/blog/wordpress-block-bindings-api/\"><strong> Block Bindings API for Kinsta</strong></a>, demonstrating how to connect external data sources to Gutenberg blocks. The tutorial walks you through registering custom binding sources, fetching weather data from Open-Meteo API, and creating a UI for custom sources introduced in WordPress 6.9. Daniele builds a practical example binding temperature and conditions to Paragraph blocks, showcasing how the API transforms WordPress into a dynamic application platform beyond traditional blogging.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ian Svoboda</strong> helps developers with <a href=\"https://www.learnwptheme.dev/building-a-custom-block-part-1-scaffolding-block-files/\"><strong>creating custom blocks using the create-block package</strong></a>. He covers static and dynamic rendering options and explains important files like block.json, edit.js, and save.js. In his tutorial, he builds a dismissible Notice block, outlines naming conventions for assets in the editor and frontend, and demonstrates automatic block registration with glob pattern matching. Developers need local environments and build tools like <code>wordpress/scripts</code> or <code>10up-toolkit</code>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">In his last week&#8217;s live stream, <strong>Ryan Welcher</strong> went fully into PHP mode and <a href=\"https://www.youtube.com/watch?v=vX1TkFYBMqs\"><strong>build Custom WordPress Blocks WITHOUT JavaScript</strong></a>. The Gutenberg plugin now also entails a PHP-only block API in version 22.2 and refined in 22.3. Check out the video and see how it all works.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Paulo Carvajal</strong> published a comprehensive guide on <strong><a href=\"https://wp-block-editor.com/the-interactivity-api-state-flow-a-comprehensive-guide-for-large-scale-applications/\">managing Interactivity API state flow for large-scale WordPress applications</a>. </strong>You&#8217;ll learn the three foundational pillars: Global State for page-wide data, Local Context for component isolation, and Derived State for reactive consistency. You also learn unidirectional data patterns, asynchronous actions with withSyncEvent, store namespacing, and server-side hydration strategies to help you build performant enterprise projects.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-and-ai\">WordPress and AI </h2>\n\n\n\n<p class=\"wp-block-paragraph\">In his <a href=\"https://www.youtube.com/watch?v=sa827ct7W_I\"><strong>latest video</strong></a>, <strong>Jonathan Bossenger</strong> discussed recent AI-related news in WordPress, including the Plugin Check Namer tool for evaluating plugin names and the introduction of the Abilities API JavaScript client in Gutenberg.  He also showcased the AI Experiments plugin and WP Bench for evaluating the AI capabilities in WordPress development. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">As <strong>James Le Page</strong> <a href=\"https://x.com/jameswlepage/status/2013997689155805461\">announced on X</a>, the <a href=\"https://wordpress.org/plugins/ai/\"><strong>AI Experiments plugin</strong></a> has received significant updates that include AI-powered excerpt generation fully integrated with the editor, along with a new Abilities Explorer admin screen for viewing registered AI features. The backend now supports Content Summarization and Image Generation experiments, which are pending UI development. Additionally, documentation and onboarding materials were improved, and WordPress Playground preview support was added to streamline workflows, allowing developers to test changes directly from pull requests.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ray Morey</strong> has the skinny for you here: <a href=\"https://www.therepository.email/ai-experiments-0-2-0-adds-excerpt-generation-and-abilities-explorer\"><strong>AI Experiments 0.2.0 Adds Excerpt Generation and Abilities Explorer </strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordVell</strong>&#8216;s editorial team examined <a href=\"https://wordvell.com/ai-use-cases-of-mcp-for-wordpress-and-woocommerce/\"><strong>fourteen practical MCP implementations changing WordPress and WooCommerce</strong></a> workflows from manual tasks to AI-driven automation. This protocol allows natural language commands, such as &#8220;publish this post,&#8221; to be executed instantly via servers like InstaWP, OttoKit, and n8n. Use cases include AI-driven content creation with SEO, automating admin tasks across sites, product search conversations, personalized customization, and guided checkout experiences.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>James Le Page</strong> also <a href=\"https://make.wordpress.org/ai/2026/01/14/introducing-wp-bench-a-wordpress-ai-benchmark/\"><strong>announced WP-Bench</strong></a>, a benchmark that measures how well language models understand WordPress development. This tool assesses models on WordPress APIs, hooks, security patterns, and features like the Abilities API while testing code in a secure WordPress environment. The goal is to set a standard evaluation for AI providers, encouraging them to improve for WordPress&#8217;s many developers.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>David Levine</strong>, a senior software engineer at rtCamp, explained in the article <a href=\"https://rtcamp.com/resources/abilities-api-making-wordpress-more-composable/\"><strong>Beyond AI: What the Abilities API means for WordPress Composability</strong></a> that the new Abilities API allows developers to register specific &#8220;abilities&#8221; using a clear, machine-readable format. This approach replaces scattered hooks and custom REST endpoints, making plugins and core features more composable. It helps third-party code integrate easily without needing extensive knowledge of internal functions. The API also allows AI and automated tools to find and use capabilities automatically, leading to a more modular and future-ready WordPress ecosystem while maintaining backward compatibility for gradual changes. </p>\n\n\n<div class=\"ng-block-6d33663c7b36729e wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-4ad8058c9019b86b wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-42138b01d253f5e9 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-e86d269012af2c45 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-0cd3a9c00848f9e9 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-218e0819b57d058b wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong>Ai generated.</p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 Jan 2026 06:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Open Channels FM: It’s Okay to Let Go\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114519\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://openchannels.fm/when-its-time-to-let-go/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:156:\"Being a creator also means there are many times where it\'s tough to let go of ideas or even businesses. You need to figure out that sweet spot for yourself.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Jan 2026 12:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Open Channels FM: Growing Agency Success with People-Centric Values and Open Source Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114458\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://openchannels.fm/growing-agency-success-with-people-centric-values-and-open-source-education/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"In this episode, Anne Bovelett chats with Rahul Bansal and Aviral Mittal from rtCamp, highlighting the agency\'s growth since 2009, commitment to accessibility, and innovative training programs in WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Jan 2026 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: #201 – Marc Benzakein on How Life Has Changed During the Internet Era\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/podcast/201-marc-benzakein-on-how-life-has-changed-during-the-internet-era\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:66612:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case how life has changed during the internet era.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Marc Benzakein. Marc&#8217;s story is one that spans nearly the entire history of the internet, with roots reaching back to the mid nineties. He explores, how curiosity and an enthusiastic embrace of technology led him from running a small coffee importing business, accepting payments by snail mail, fax, then email, to helping wire up schools for internet access when modems worked incredibly slowly, and only a handful of people were online.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This episode is a departure from our usual topic about plugins, themes, and WordPress community news. Instead, we are more in the business of reminiscing this week, taking a reflective walk down memory lane to look at how the internet has evolved, not just as a technology, but as an integral part of society that&#8217;s transformed how we work, communicate, and think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Marc shares some personal stories, building bulletin board systems, forging long distance friendships over phone lines and slow modems, and watching as internet access shifted from an intentional, difficult to navigate hobby for a few, to an invisible always on utility that we all take for granted.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about how technology has affected not only business and productivity, often creating more work instead of less, but also our attention spans, expectations around entertainment, the pace of life, and even the social fabric that binds us together.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss the cultural shifts that came with always connected living, digital minimalism, and the recent push by younger generations to step back from tech and reclaim a bit of analog life.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We chat about the early optimism of open standards, the rise of walled gardens and social networks, and the challenges of regulation, commercialisation, and the balancing act between freedom and responsibility online.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Marc&#8217;s perspective is shaped by decades of direct technical experience, as well as thoughtful observations of how technology is reshaping the world around us, sometimes for the better, sometimes in ways we need to pause and question.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you are nostalgic for the old days of dial up, intrigued by how the internet&#8217;s culture has shifted, or curious about how these transformations might play out as new technologies like AI reshape society, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Marc Benzakein.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Marc Benzakein. Hello, Marc.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:44] <strong>Marc Benzakein:</strong> Hello, Nathan. How are you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:45] <strong>Nathan Wrigley:</strong> Yeah, good. This is going to be an episode unlike one I think we&#8217;ve ever done on the WP Tavern podcast. Because usually we have a conversation about, I don&#8217;t know, a plugin, a theme, a community idea, something along those lines. And today we&#8217;re just going to do memory lane. We&#8217;re going to go hand in hand down memory lane.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think Marc&#8217;s memory lane is a little bit longer than my memory lane because it&#8217;s all about the internet and the way we&#8217;ve been using it and how it&#8217;s evolved and all of that. So if you&#8217;ve got an expectation of a plugin show, this is not the one for you. This is going to be a little bit different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So before we crack in properly and have that conversation, Marc, would you just sort of paint the picture a little bit about your bio? Maybe go back right to the beginning of your experiences on the internet. When did you first get online and all that kind of stuff?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:30] <strong>Marc Benzakein:</strong> So I want to go back to, I think it was 1995 or 1996. There was a, of course people hear about, and it still exists, AOL and things like that. And then there was Prodigy. I got involved as a user of the internet with a company called Netcom. And it was kind of one of the first true internet service providers that I knew of at the time. It wasn&#8217;t like, it didn&#8217;t have like this interface and kind of guide you through where you needed to go and everything. You had to use things like Gopher, and you had to do research in order to be able to use the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I of course, became fascinated with it always being a, kind of a tech head or just curious. I&#8217;m just infinitely curious. It doesn&#8217;t really matter, it doesn&#8217;t have to be technology. It can be anything and I find it, like I said, I&#8217;m infinitely curious and that leads to distractions sometimes, but it also leads me down paths that I never would&#8217;ve thought.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And while I was working on the internet, so this was at a time that I was actually importing coffee from Africa. So yeah, so related. So related. And I had actually made some pretty good money with the coffee business. I was doing the email thing. I had like my three friends who had email addresses and we were like, oh, this is cool. Look at this, instant gratification. And I thought, man, it sure would be cool to see what this looks like from the other side of things. Because I have no clue how any of this works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so curious thing happened with the coffee company. I was importing from a country called Burundi in Africa. Some people know where it is, some people don&#8217;t. I actually never visited, but my uncle was actually a big shot in the agriculture department there which is how I had the connection to be able to import coffee into the United States. They had a lot of civil and political unrest, and essentially burned the coffee fields. And my uncle fled the country because it had become so dangerous.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So one day I&#8217;m, basically I had set up a system in which I import the coffee, it goes to a distributor. Once a month I would go out to the mailbox and collect a cheque. And that was my job. It was the easiest thing I ever did, once I got the system built. And so, lo and behold, civil unrest and all that, which was just awful by the way, but I&#8217;m out of business because I can&#8217;t import coffee from Burundi. And I was really young, and probably not smart enough to think, maybe I should back this up with other countries too.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But coincidentally, a person that I had gone to high school with, they built computers for schools and things like that, so they had some government contracts and things like that. And they had this crazy idea that they wanted to connect schools to the internet. And they wanted to give them high speed access. Now, keep in mind that back in these days we&#8217;re talking about 14.4K, it was, well, we thought it was fast at the time. You know, you had US robotics with their HST standard. And we thought that we were doing well, but most people were actually on 24 hundreds back then.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you can imagine that, 2,400 baud modems. I remember it like it was a meal ago. I mean it was just crazy. And so now, I was like importing coffee and I was trying to figure out what to do next and Greg Franklin, who I have partnered with since like the eighties, we&#8217;ve been through a lot. We were partners at ServerPress. We&#8217;ve been through it all. He and I, you know, we were always good friends. And he says, hey, I&#8217;m going to work with Phil and Steve on this internet thing, and it&#8217;d be kind of cool if you help me out because I have no clue what I&#8217;m doing. I&#8217;m like, well, I have no clue what I&#8217;m doing either. And he said, yeah, but between the two of us, we can figure it out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the idea was, they had already set up, Phil and Steve, who were the other partners in this company, they had set up digital ISDN access. Now, ISDN, let&#8217;s see, what did that stand for? Something, something, digital network.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:32] <strong>Nathan Wrigley:</strong> I can&#8217;t remember what the acronym stood for, but it was banded around a lot, I remember that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:36] <strong>Marc Benzakein:</strong> Yeah. And what made it fantastic was you had a modem, okay, but it was kind of on demand. So when your computer sent out a network request that was outside of your internal network, which nobody had home internal networks back then. You know, if they had a computer, that was it, right? Back then, internal networks were things like, there was like LANtastic was one of them, and then there was Novell networking and all that stuff. So it was like that token ring network stuff, right? Okay. So you have to go way back, right? So I can&#8217;t believe I&#8217;m remembering some of these terms because it&#8217;s been so long.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:11] <strong>Nathan Wrigley:</strong> Yeah, I remember all of the ways that they could be connected. I remember seeing the, you know, you&#8217;d read through TCP IP documentation and there&#8217;d be diagrams of computers connected with T cables all in circles because that was the most efficient way to connect them all. Oh gosh, you&#8217;ve taken me back.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:26] <strong>Marc Benzakein:</strong> It wasn&#8217;t just the most efficient way, it was, if any part of that ring broke, the whole network broke down. You had have it, you know? So this concept of plugging into a switch or a router or something like that was like completely, pardon the pun, but completely novel. Not Novell, novel.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:45] <strong>Nathan Wrigley:</strong> Novell, yeah, very good. Very good.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:48] <strong>Marc Benzakein:</strong> So I built a lot of token ring systems for local businesses and things like that, but nobody had a network at home. They generally, at most had one computer at home. And when they wanted to go online, I should go back even before that, I used to run a bulletin board service, a BBS, which was even more ridiculous than a 2,400 baud modem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:11] <strong>Nathan Wrigley:</strong> This was when there were like three people in the United States online.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:14] <strong>Marc Benzakein:</strong> Yeah. And essentially I would have my computer, I was living in an apartment at the time. I would have my computer set up and only one person could connect at a time to my computer, which was set up with this BBS software on it. And they would play games. I had downloads of different files and things like that. I was the first BBS in our region to have a one gigabyte SCSI hard drive. And so I became very, obviously my BBS became very popular, not because I offered anything incredible, but because I had a one gigabyte hard drive.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:47] <strong>Nathan Wrigley:</strong> Yeah, you had the badge of honor.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:48] <strong>Marc Benzakein:</strong> Yeah. And word spread quickly and all that. In the old fashioned ways, which was carrier pigeons and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:53] <strong>Nathan Wrigley:</strong> That&#8217;s right. There was no, yeah, or the bulletin board.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:57] <strong>Marc Benzakein:</strong> Yeah, or the bulletin, yeah. And I think that was probably where I got kind of this taste of like how cool it could be because I would modify my own stuff. So I would, we used a bulletin board software called WWIV. It was all C++ coded. And there was this guy that somehow I found, I don&#8217;t even know, in Virginia. His name was Tony. And he and I got to be really good friends because he ran a bulletin board system too in Virginia and I&#8217;m in California. And we would get on phone calls, long distance mind you. If you remember what long distance was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We would talk for hours and this guy was one of the funniest guys I&#8217;ve ever met. I mean we would, he would just call me up to tell me, we got to the point where he&#8217;d just call me up to tell me jokes and we would just laugh for hours. But he was in the military. He worked on the helicopters that flew George Bush senior around. He was in the Marines.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And we met up one time because he flew out to California. But that&#8217;s a whole side story. So that&#8217;s where I got started. And then I invested in a US Robotics 14.4 HST modem. So I could do, yeah, 14,400K per second, which was like, I don&#8217;t know what the time of $500 modem or something ridiculous like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:10] <strong>Nathan Wrigley:</strong> Yeah, you&#8217;ve suddenly taken your computer onto the highway instead of being stuck on back lanes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:16] <strong>Marc Benzakein:</strong> Right. So not only did I have my one gigabyte SCSI drive, but I also had high speed BBS connection.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:23] <strong>Nathan Wrigley:</strong> You got all the bling that you can have.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:26] <strong>Marc Benzakein:</strong> I had all the bling on my 286 computer. It might have been a 486, I don&#8217;t know. I don&#8217;t remember the computer. But what was funny was like you would sit there, we&#8217;d be watching TV and I&#8217;d hear my modem go off because someone would be connecting to the BBS. I would drop what I was doing just so that I could go and see what they were doing, right? Because at my end I could see everything that people were doing, so on top of it all. That was probably my foray into the internet, even though I didn&#8217;t realise it at the time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:53] <strong>Nathan Wrigley:</strong> Although for a proportion of the listeners, they&#8217;ll be kind of nodding their head and going, oh yeah, all of the things that you described make perfect sense. I guess for a significant proportion of the audience, all of this will sort of sound like a mystery. But hopefully you&#8217;ll have got some impression, deal listener, the internet as we now know it, where it&#8217;s ubiquitous, it really is everywhere. You know, you&#8217;ve got a connection if you&#8217;re walking down the street with your cellular network and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the part of the world, certainly where I live, and I imagine where you live, there&#8217;s no real black spot where the internet does not really exist. And everything&#8217;s really straightforward. You buy a device from a shop, turn it on and it connects almost immediately. And yet that really wasn&#8217;t the case. It was kind of like more pioneering days. Most things didn&#8217;t work, but it was a heck of a lot of fun, and a heck of a lot hobbying. So more of actually. Now that I think about it, that&#8217;s the best way to phrase it. It was a hobby, things to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:48] <strong>Marc Benzakein:</strong> It absolutely was a hobby. Very few of us actually had, well, I don&#8217;t think any of us had the foresight that the internet would become what it is right now. At least none of the people in my circles. I think it was, it would be the equivalent of like being a Ham radio operator. You know, it&#8217;s kind of the same sort of thing. You kind of felt like you were part of this like little elite group of people who understood how it worked and could make it work, and it made you feel special. And for those of us who grew up kind of being that nerd in high school and things like that, and especially back in the seventies and eighties when, I mean I went to school, there were only three people who even knew how to use a keyboard on a computer. And of course we, I mean they made a fricking movie called Revenge of the Nerds. They made fun of us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s amazing that we haven&#8217;t had, well, I think a lot of us have had to go through years and years and years of therapy. And I think that I just probably deflected a lot of that sort of treatment of nerds with like a very sharp tongue and a, you know, a very, I would laugh at it and things like that. So that was kind of my coping mechanism probably. And I probably have some trauma from all that that I don&#8217;t even remember. But there&#8217;s probably something there, but that&#8217;s a whole other show. We can talk about that another time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:00] <strong>Nathan Wrigley:</strong> Yeah. So the fact that it was a hobby and also the fact that, so my recollections start a little bit later than yours, but we&#8217;re not like a whole decade out of kilter. I think you definitely started at times where I can remember some of that stuff. You certainly got the march on me. But nevertheless, I don&#8217;t think in my estimation I had any conception that it would grow beyond a thing that hobbyists did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think it was always going to remain this sort of niche hobby thing. Maybe some sort of place where you would communicate with a handful of people, and that handful of people would be, you know, equally nerdy in the same way that you or I were. But no expectation that it would be adopted en masse. No expectation that every single human being would have some sort of device, either that they&#8217;re walking around with or just in their home or anything like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I think, looking back, I predicted it would just be this hobby thing and would never grow into anything else. And so it was just a bit of a lark, a bit of fun. Something that you&#8217;d put away from time, you know, you would set it down, go and do your regular day, then come back. There was no email, nothing like that. So you could safely put it away and then come back to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I look back on it very fondly. It&#8217;s almost like halcyon days. And so many things that the internet has been connected with, and is connected with now are fabulous, but there&#8217;s also a lot of downsides which have come serendipitously along the way as well. Nobody foresaw those either. So I think, like I say, it was sort of halcyon days. Just this notion that it would be, I don&#8217;t know, unicorns and rainbows all the way down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:33] <strong>Marc Benzakein:</strong> Right. The closest prediction that I had made back then was I said, you know, one day we are all going to be connected. But I thought it was going to be one of these kind of like, we go on and we intentionally connect with each other, not like we&#8217;re always connected all the time kind of thing. Of course I was young and quite the gamer at the time. I said, here&#8217;s what&#8217;s going to happen is, I predict that one day games will exist where we keep all the files on our own systems, and the only thing that&#8217;s being transmitted to each other is just data to like, so we can like play together all at the same time in these games.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That was my prediction and people would laugh at me. And now of course it&#8217;s gone way, way, way beyond that. But every once in a while I&#8217;m like, see, I told them and I did nothing about it. I just knew it was going to happen and I did nothing about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:20] <strong>Nathan Wrigley:</strong> I remember when I was at school, sitting in a physics class, and I for some reason got sat next to probably the nerdiest nerd I&#8217;ve ever met. I won&#8217;t name him, but he is still very nerdy. He really was like on the extreme end of interested in all of this kind of stuff. And I remember we got into a conversation once where he said, do you know what I think is going to happen in the future? I think you&#8217;ll be able to, so we still had cathode ray tellies, so you&#8217;d turn the tele on, you&#8217;d wait for three minutes for the TV to warm up, and then the picture would slowly appear. And that was the level that we were at, and you had to walk over and press a button on the screen if you want to change it between the four channels or three channels that were available in the UK at the time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:01] <strong>Marc Benzakein:</strong> Yeah, the kids were the remotes back in those days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:03] <strong>Nathan Wrigley:</strong> That&#8217;s right. We were literally, either that or a big stick that you could try and prod from the sofa. But he said to me, in the future we&#8217;ll have televisions that are just connected to computers somehow, and we&#8217;ll pick what we want to watch, and we won&#8217;t have to just watch what&#8217;s provided to us. We&#8217;ll be able to say, I&#8217;d like that now, and this now, and watch this film now. And he just predicted this future. And I remember sitting there thinking, that&#8217;s never going to happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now that&#8217;s kind of like the starting gate for children growing up in this era. That&#8217;s like the basic provision. If you haven&#8217;t got, you know, the computer switched on and the TV and the music and the radio and all of that on demand, yeah, that&#8217;s not life, that&#8217;s just some sort of poor version of life. It&#8217;s so interesting how it&#8217;s transformed what we expect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:55] <strong>Marc Benzakein:</strong> It&#8217;s funny because, yeah, you hear the kids being like, what do you mean you had to wait till Tuesday night at eight o&#8217;clock in order to watch? And if you didn&#8217;t see it, you&#8217;d miss it completely. What do you mean by that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:04] <strong>Nathan Wrigley:</strong> Yeah. But even map that further back and, you know, you go back a whole generation or a generation and a half prior to you and I, even the notion that you could watch anything on a box in a house, what do you mean, the theater? Somebody brought the theater to your house. Well, yeah, kind of, in a little box. What, they shrunk the people down? How? It&#8217;s insane.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yet, every single generation, this is now the assumption. The technology of the magnitude that we&#8217;ve got now, and the complexity that we&#8217;ve got now, and the miniaturisation that we&#8217;ve got now, this is now the benchmark for the beginning of the next generation. And it&#8217;s so interesting watching it happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don&#8217;t know what you feel. I&#8217;m probably jumping ahead because I want to go back and talk about some of the things which have gone wrong. But what&#8217;s your, do you see yourself fully able to engage with all of the new things that are happening?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we&#8217;re in the year, we&#8217;re at the very, very end of 2025 and, you know, we&#8217;ve got things like AI. We&#8217;ve had all sorts of interesting things happening. And I do wonder, for me at least anyway, I do wonder if there&#8217;s a point in time where it just races ahead at such a speed that somebody like me really does genuinely struggle to kind of keep up. I don&#8217;t know if you&#8217;ve got the same intuitions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:13] <strong>Marc Benzakein:</strong> I actually think everybody does. I think that kids do too. I just think that kids are focused, for instance, on what&#8217;s important to them. And they&#8217;re at a different point in their life, so what&#8217;s important to them is not important to us. And so the technology that&#8217;s important to them like, say for instance, TikTok or whatever, is just an example, right? I only care about TikTok insofar as, what can it do to boost my brand? Or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although it is interesting that kids are interested in boosting their brand on TikTok and they&#8217;re kids. But that&#8217;s, they may not realise that that&#8217;s what they&#8217;re doing, but that&#8217;s what they&#8217;re doing. But as far as technologies go, I think we just tend to use a technology, I think we&#8217;ve reached an age where, with the exception of maybe teleportation, we really feel like, if I can think this, we can do this. And so we just kind of like, now we&#8217;re just like, okay, I want to do this, what do I have to do in order to do it? Not, that&#8217;s impossible. You know, I think we&#8217;ve crossed over that hump of things being impossible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:15] <strong>Nathan Wrigley:</strong> I remember sitting in the car with my children. So this is going back several years now. I mean quite, maybe a decade or more. And I remember my child asking to play a certain song on the car radio. I said to him, we don&#8217;t have that. And he looked at me and he said, what do you mean we don&#8217;t have it? Because the setup that I had in the car still required compact disks. You know, the old CD player. You would put the CD in and so the arrangement of CDs that we had in the car was the available catalog of songs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But he could not get over, unavailable. What? What do you mean? I mean, genuinely, it was a real moment where he had to think, the song is bound to that round thing. It&#8217;s not just coming out of the ether somehow. And that was quite a profound moment for me thinking, wow, your world is a lot bigger than mine, well, smaller and bigger at the same time, but your expectations are so different to what mine were when I grew up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:10] <strong>Marc Benzakein:</strong> I think that, oh, I mean I hate to sound like, oh, kids today, but kids today, I mean they barely know what an iPod is. And how long ago was that? That wasn&#8217;t even that long ago. Because it&#8217;s like, what, you had to download your music onto this device? Yeah, because it could hold more music than a CD. For us, the iPod was groundbreaking, right? But I remember the first time I could put music on my phone and I was like, oh, this is awesome. I don&#8217;t even, once again, I don&#8217;t even know why we call them phones anymore. I hardly ever use it to talk to people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:38] <strong>Nathan Wrigley:</strong> Yeah, your pocket computer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:40] <strong>Marc Benzakein:</strong> It&#8217;s way more powerful than anything I ever had in the past. I think because kids are in a constant state of having to adapt anyway, that&#8217;s just what growing up is, is a constant state of adaptation. I think that it&#8217;s easier for them. I do find that I&#8217;m a little bit slower or I might be just more selective. I might just be like, you know, this doesn&#8217;t interest me. And it may this be like I&#8217;m becoming more and more, get off my lawn as I get older. Or it may be that I&#8217;ve always, even back when we started the internet service provider, my feeling was that we have all this power at our hands and we are still children when it comes to us as a society and our ability to be responsible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:25] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s a curious insight isn&#8217;t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:28] <strong>Marc Benzakein:</strong> Technology has always been kind of a double-edged sword for me. It&#8217;s amazing what you can do, but going back to the coffee days, I remembered how the speed of business changed for me because we had fax machines. And so I would fax to the people in Burundi because we would, coffee would go to auction. I&#8217;d have to bid on it and, you know, get the lot and then have it shipped over here. And the next morning I would, you know, because of the time difference, I would send them a fax in my morning and then the next morning I&#8217;d have a fax from them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And we&#8217;re talking about not even 10 years ago, everything had to be done by courier and things like that. And it would be days and days and days before you got information or you&#8217;d have to make a phone call. And so that was like the first part of, you could sign contracts in a fax machine. And then we got email, which became even more instantaneous. And as a result, going back to like when personal computers came into our homes, a big part of it was, hey, these things, well, you can do in two hours, what you used to be able to do it eight hours.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I very quickly learned that nobody was working a two hour day once technology came into our homes. In fact, people were not only bringing their work home, but they were working 14 and 16 hour days. And my thought, I was probably 18 or 20 years old, and my thought even at that time was like, we are not responsible enough to have this kind of technology at our fingertips. And I still feel that way. And so I&#8217;ve always struggled with this like, we have technology but we do not have the ability to limit ourselves or to discipline ourselves to say, okay, but how much is actually enough here?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:06] <strong>Nathan Wrigley:</strong> Do you know? That&#8217;s really curious. It&#8217;s not something I dwell on a lot, but when you say it, it makes perfect sense. It&#8217;s not like the amount of work that we were doing 50 years ago, the amount that needs to be done objectively is the same now than it was then. I don&#8217;t think that&#8217;s the case. I think the amount of work always fills up the available time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so this promise, which has been offered in multiple generations over hundreds of years, you know, you can go back to the industrial revolution or the agricultural revolution, just the idea that the technology will free up time. Clearly it does, but I think it&#8217;s true to say that other things occupy that time because there&#8217;s an efficiency gained over here. Well, that leaves you a little bit of time to do this extra other task over here. And because everybody&#8217;s bound up to the technology, everybody has this available time, which they then fill up. And so the cycle begins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in many ways, I feel exactly like you&#8217;ve just described. Instead of going from an eight hour day, the fact that we&#8217;ve got the technology in our homes and we can check the email during the middle of the night, and so on and so forth, I think it is entirely possible that the workday could be longer now than it ever has been. I mean not for everybody, and not all the time, but it certainly could be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curiously, last night I went to, there&#8217;s a history society that I attend locally and we had a magic lantern show. And I don&#8217;t know if you&#8217;ve come across a magic lantern show, but a magic lantern show is, it&#8217;s a wooden box with a whole bunch of candles in it. They put painted glass slides in, and some of the painted glass slides, if they manipulate them in a certain way, they can simulate movement, or arms moving around or.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:41] <strong>Marc Benzakein:</strong> Yeah, they&#8217;re really cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:42] <strong>Nathan Wrigley:</strong> Yeah, I really was hit by a sense of, that was entertainment. And there was such pleasure and innovation in that. And it&#8217;s the same now, right? Along comes the internet and we get the same pleasure out of that. And along comes AI and the next generation will get the same amount of pleasure out of that. But it was also curious to see, and I&#8217;m just going to use the word slow, how slow that activity was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was a lot of breathing room. There was a lot of space for you to inject your own thoughts. There was a lot of time waiting for the chap to pull out one slide and put the other one in. Whole minutes would go by and nothing would happen. But there was no expectation that, well, we just lost a couple of minutes there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think that&#8217;s kind of leading me onto an unexpected consequence of the internet is maybe that we&#8217;ve lost the capacity to think in that kind of slow manner, which I really hadn&#8217;t parsed it until last night when I saw what entertainment was 150 years ago. And it was so gentle and slow and enormously pleasurable. Once you&#8217;d suspended that there&#8217;s no CGI, there&#8217;s no Tom Cruise there, it&#8217;s just a person on a glass slide. But it was absolutely fascinating. It gave me a real window into the pace of life and what that might have been and how that has changed. And it will, I presume, never, that genie will never go back in the box.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:05] <strong>Marc Benzakein:</strong> Well, no. I mean it&#8217;s impossible for any of that. I mean I can bring it to modern day terms. When you watch or listen to a podcast, do you listen to it at regular speed or do you listen to it at 1.5 or 2?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:15] <strong>Nathan Wrigley:</strong> Yeah, there you go. Yeah, most people I think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:18] <strong>Marc Benzakein:</strong> Yeah. If I have a day where I am doing nothing, I even watch my movies now, I watch them at 1.5x or 2x. And it&#8217;s crazy because your brain adapts to it very quickly. But then what happens is, if I&#8217;ve gone through a whole day of like listening to podcasts or something like that, which I&#8217;ll have going on in the background and I have no interaction with people, when I&#8217;m done listening to them, it is dreadfully dreadful. I become impatient talking to people because they talk so slowly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then I wonder, am I speaking faster than I normally do now because I&#8217;ve been listening to this podcast. And I have to reset my brain. And the thing is, I kind of feel like, I have this theory on ADHD, which I definitely have. My theory on ADHD is, there&#8217;s this misconception that ADHD is something where you can&#8217;t keep your attention on any one thing, which we&#8217;re finding out that&#8217;s not true. You either hyperfocus or you&#8217;re not focused, in simple terms.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I feel like what it boils down to is a ADHDers have to have 100% of their bandwidth taken up all the time. That&#8217;s what it boils down to. So if what I&#8217;m working on requires a hundred percent of my bandwidth, I can hyper focus on it and do nothing else. If I don&#8217;t then, I&#8217;ve got four screens on my computer. I used to have six, but I&#8217;ve got four. I&#8217;ve pared it down to four and I&#8217;ve got something going on on all those screens. If I&#8217;m doing something that&#8217;s kind of mundane and just, because I have to have that filled all the time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think that as a society, you talked about time, and it&#8217;s really kind of a rule of economics, right? You spend what you make. No matter what you&#8217;re making, you&#8217;re going to spend it all. That&#8217;s kind of like this echo. And it&#8217;s the same with time. Unless we actually discipline ourselves to say, look, mental health is just as important, so that means downtime, meditation, all these things are just as important no matter what society tells us. Those things are just as productive as putting out a widget or whatever you&#8217;re doing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I think that what has to happen at a societal level, in order for us to gain back some of this discipline, is we need to recognise that while, yes, we need to take up a hundred percent of our time, what are the important things that we need to do in order to take up that a hundred percent of the time? And the reality is, some of that is downtime. Some of that is sleep, some of that is eating, some of that is interacting with people or whatever it may be. And I think technology, because it is constantly the shining new object, takes us away from all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:45] <strong>Nathan Wrigley:</strong> I think for me, the profundity of the internet, let&#8217;s just use that term, you know, whatever is bound up inside that term, is enormous. You know, it&#8217;s probably the most, up till now, maybe AI will come to surpass that, but up until this point, I think the internet is probably the most profound technological invention of all time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:04] <strong>Marc Benzakein:</strong> I call it the eighth wonder of the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:05] <strong>Nathan Wrigley:</strong> Yeah, right. So the capacity for all that it brings. The fact that you can communicate with people, as I am with you. You are literally on the other side of the planet, and I&#8217;m talking to you as if you are stood next to me. The mind boggles. But also access to news, access to publishing your own information, seeking out communities that are just like you and the myriad way, oh, commerce. Let&#8217;s not forget that. That whole thing. The capacity for that, remarkable. All of it, remarkable and amazing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think fair to say that there&#8217;s always swings and roundabouts. All of those wonderful things that we&#8217;ve just described, there&#8217;s probably some missteps along the way. And that was one of the things that I wanted to ask you. Are there any bits during the internet&#8217;s evolution to where we are now, where you think, do you know what, maybe we shouldn&#8217;t have done that? Maybe that wasn&#8217;t a good idea. Have you got any sort of thoughts on that, where you look back and you think the internet probably could have avoided that aspect?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:58] <strong>Marc Benzakein:</strong> I could think of a lot of little things. I think it&#8217;s one of those million little things, right? So going back to those days, it was really quite interesting. You know, I didn&#8217;t know what DNS was. I didn&#8217;t know, I barely knew what an ethernet cable was. We had this box sitting there that was a Cisco router. I had no idea what a router was. I mean, all this stuff because it was all pre-configured.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think the thing that blew me away back then, and this doesn&#8217;t really answer your question, but the thing that blew me away was, here we had people that we would get on phone calls with each other to work through problems, because this guy understood DNS, this guy understood routing. The two didn&#8217;t both understand both. It was really insane that it worked at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I remembered sitting there going, this is a worldwide thing and it&#8217;s going to become a worldwide phenomenon. I mean it&#8217;s already working on a worldwide level. And it&#8217;s a bunch of people who don&#8217;t know each other, who probably if they were in the same room as each other, wouldn&#8217;t like each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I mean there were guys that I dealt with, there was this one guy, Frank, every time there was a DNS problem, I had to call him. I would dread calling him because his first question would be, what did you do now? It wouldn&#8217;t be like, ironically, it would be like, accusatorily, right? If that&#8217;s a word. I hated calling this guy, right? But somehow or another, we knew that we were working on something bigger than all of us, and so we tolerated each other at these various levels.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:22] <strong>Nathan Wrigley:</strong> Can I just inject a couple of my things? Yeah. Is that all right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:25] <strong>Marc Benzakein:</strong> Yeah, sure. Go ahead. Absolutely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:26] <strong>Nathan Wrigley:</strong> Because where I was going with this was, at the outset of the internet, I think there was a widespread assumption, and hope, that open things would win. And for a period of time, I think they did. So an example would be, I don&#8217;t know, things like RSS and things like that. Just widespread, open standards, everybody understood. And I think a lot of that has been upended, you know, the social networks came along, and made these utterly beguiling interfaces, which consumed lots of time. I&#8217;ll get onto that as my second point in a moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the standards sort of got, not thrown out the window because they&#8217;re still there and, you know, you can still build on top of them, but they got usurped. More utilitarian things that were more easily understood because you were in this silo worked. And so closed things started to dominate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have this notion, I have this hope that we are maybe seeing a little bit of a pushback against that. Obviously you and I are in the WordPress space where those kind of things are incredibly important. So that would be one of my things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the other thing, which I think I can say for me, and I think it maps across many people, but I can&#8217;t be certain about that, is the time that can be consumed on the internet, which with the benefit of hindsight could have been better spent doing other things. I think it&#8217;s easy to become, not addicted, but for me to really get lost in the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:51] <strong>Marc Benzakein:</strong> What you&#8217;re talking about is a natural evolution though, because there&#8217;s no real way to regulate that. That&#8217;s like, you can&#8217;t. How do you regulate that? And I mean that was of course the appeal of all of it back then. Just like blockchain, that&#8217;s the appeal of blockchain is like, how do you regulate it? We knew that eventually people would figure out how to regulate it, even then. Because I remember us having these congressional hearings and things about monopolies and things like that, and all these things that had to do with the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it was very clear that the people asking questions had no clue what they were asking, because they had no clue what the internet really was other than they used email. They had no clue how far reaching. And so they would try to put standards in that just didn&#8217;t make sense. But we all knew that eventually people would be in those positions that actually grew up with the internet, understood it. And, of course, you can be cynical or whatever, the government is going to figure out a way to regulate everything so they can get their piece of the pie somehow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And we saw a little bit of that with the regulation of, say, for instance, IP addresses, which back then were a lot harder to come by because there was a big concern about IP address shortages because we were on IP v4 and there was no such thing as what they call network address translation. So like every single website, if you had a web server, every website had its own IP address. If you were at home, you had a static IP address that was assigned to you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I remember filling out the forms, which was like a 20 page application, it may not have been 20, but it sure felt like it, application for more IP addresses, more blocks of IP addresses because after, so we had ISDN, which was kind of a big flop, and then we went to the modem standard which was dial up, which was actually, became very highly profitable for us. But then we got into DSL, which was the digital subscriber line concept. And it was cable or DSL. Those were the two high speed or broadband options.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And even when DSL just came out, we had to assign people IP addresses. So it&#8217;d be like, here&#8217;s your DSL modem. We would go out, we would install it in their home. Here&#8217;s your IP address. And with your DSL subscription comes a dial up subscription, so that when you&#8217;re traveling, you can access the internet and you can dial in from your hotel room or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I&#8217;d say that the only thing we could have changed maybe was the messaging. Because everything else, and it&#8217;s still a matter of, look, the internet represents freedom. It represents the freedom to do what you want, when you want, how you want. And hopefully you&#8217;re not doing anything illegal. But of course there was a lot of that going on as well. But I don&#8217;t, the whole point of the wild westiness of it is that it was the wild west and you could do whatever you wanted. And people loved that freedom.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I don&#8217;t know, you know, my big frustration is I&#8217;d have people call me at two in the morning on my home phone line, because their internet was down and they were going to go on a raid on World of Warcraft or something like that, and they were the raid leader and, by the way, true story. I&#8217;m not making this up. And somehow this guy got my phone number and death threat. I mean, I got a death threat because he couldn&#8217;t go on this raid.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I mean the stories during that time are crazy. And I think it really is just a matter of, I think as always, with everything, messaging is everything, but people are still going to do what they&#8217;re going to do, whether it&#8217;s legal or not. So I&#8217;m not sure that there were any mistakes that were made because it was an evolution. It wasn&#8217;t, there was nothing intentional.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:21] <strong>Nathan Wrigley:</strong> I mean, it&#8217;s a technology which is just flooded with all of humanity. So the idea that it was going to be unicorns and rainbows all the way down was misguided because it was just waiting for humans to come in with all their interesting, fun, curious, illegal, time wasting stuff, and pour all of that into the internet. I am so fascinated about where all of that will go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The bit that makes me most interested is that I had quite a significant portion of my life when the internet didn&#8217;t exist. And so I had a childhood which was completely inoculated from the internet. And so I have that perspective and so, okay, here&#8217;s the bit where I sound like the curmudgeonly old man and, you know, the youths of today and all of that. And that&#8217;s not really the intention.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But my children&#8217;s generation have never had that. And it&#8217;ll be curious to see how they grow up in a world in which always on was always a thing. From very early age, they had access to technology. The endeavor to acquire information is now more or less trivial. You just log onto something and all of that is available to you. We&#8217;ve got AI coming at a breathtaking pace. It would just be so interesting to see how this goes. And also very interesting to see how my generation cope with its onset because, sure as anything, it doesn&#8217;t look like it&#8217;s going to slow down. And so we are going to have to try and keep up, and hopefully we will, without becoming too curmudgeonly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:52] <strong>Marc Benzakein:</strong> My son is going to be 21 this next year, and he hates everything that has to do with technology, which is really fascinating. He&#8217;s in college and outside of college, he works at a Barnes and Noble. He has his girlfriend and they go hiking every single day. He takes a hammock with him and puts it between two trees and lays in his hammock and reads books. And this is not something that I trained him to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This was, I mean I appreciate that about him other than he&#8217;s, you know, not nearby so the only way I can contact him is texting and phone calls, but he prefers phone calls to texting. He prefers email to texting because emails, you check your email when you want to, you don&#8217;t get interrupted by the text message notification. And he&#8217;s very, very bright and his whole circle of friends are very, very bright and they&#8217;re not into technology either.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:44] <strong>Nathan Wrigley:</strong> I was just going to say, I&#8217;ve noticed that that seemingly would be a bit of a trend over this side of the pond as well. There does seem to be a groundswell of turning things off or minimalising, tech minimalism, let&#8217;s call it that. So things like vinyl is coming back as a format for consuming music. The phone&#8217;s getting simplified so that there&#8217;s less on there. Apps being deleted because the assumption that it&#8217;s good to have more things coming in and that more connection is a good thing has been sort of pushed to the back.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Actually many of my children&#8217;s generations seem to have now grown weary of that, and they realise that actually that&#8217;s not in their best interest to be engaged all the time, every day. And so that will be a curious pushback. It almost seems like a sort of Hollywood plot that, doesn&#8217;t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:24] <strong>Marc Benzakein:</strong> Maybe it&#8217;s just that it&#8217;s so taken for granted now just like a car is or anything else, that they don&#8217;t think of it as anything other than what it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:36] <strong>Nathan Wrigley:</strong> So we were sort of caught up, our generation were caught up with this constant cycle of innovation, newness, the shiny thing. And actually for a whole sort of 20 years, there was no let up in that, was there? The internet came along, home computers came along. They got smaller. They became laptops, which you could then take everywhere. Internet and mobile phone networks got switched on. Then the advent of a computer, which you could hold in your hand came along. Social networks came along. All of that completely switched on, connectivity came along. There was a constant churn of evolution and next new thing. Maybe you&#8217;re right.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:09] <strong>Marc Benzakein:</strong> It&#8217;s like you&#8217;re talking about the television set. In our house growing up, the TV set was something that was kind of always on, and so when we turned it off, it wasn&#8217;t a big deal or we didn&#8217;t feel the need to watch it constantly. We didn&#8217;t need to, I mean let&#8217;s say that you live in a place where, out your front window, you have like this beautiful view. But every single day you see that same exact view, to the point where you can acknowledge that it&#8217;s a beautiful view, but you&#8217;re not as likely to acknowledge it every single day.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think that that&#8217;s the way that technology has become. And of course, I welcome that because I want our kids to have some of the same experiences that we Gen Xers had, you know, where we had to drink water out of the garden hose because our parents told us to go out the door and not come back until after dark. And I don&#8217;t want to go that extreme but the point is that they have these things at their disposal, and they just know that they&#8217;re there, so they don&#8217;t feel like they have to constantly pursue it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I mean, I remember last year when my son was out visiting, I took him to this place called, it&#8217;s called the Medicine Buddha, which is about, it&#8217;s out by Santa Cruz. And it&#8217;s about, I don&#8217;t know how many acres it is, but it&#8217;s redwoods. It&#8217;s nothing but redwoods. And we were out there for about two hours hiking. He&#8217;s like, Dad, why didn&#8217;t you bring me here two days ago? We could have spent the whole weekend here. I mean, it was like, to give you an idea of what it&#8217;s like, it is so quiet there because the trees are so tall that the birds don&#8217;t even come down,</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think that the pendulum is swinging in the right direction. I do think that youth today has a lot of the right ideas. You know, hopefully our generations haven&#8217;t screwed it up too much for them, that they get to appreciate all of that. But I&#8217;m not as worried about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I will also say that with our kids, we were not super restrictive with the screen time with our kids. And it was always funny, you know, we kind of started it out as an experiment and what we found was that they&#8217;d play on their tablets, or on their computers for an hour or whatever, and then they&#8217;d be like, let&#8217;s go play basketball, or let&#8217;s go play football, or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And they would just put the things down and they&#8217;d go out and explore on their own. And my kids, it&#8217;s crazy how sometimes hard it is to get a hold of them because, oh, I left my phone at home, sorry Dad. And so I see it going in a good direction. But that&#8217;s the funny thing is like we went from this period, and I know this was supposed to be about the whole evolution of the internet and we kind of, as you and I do, went down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:36] <strong>Nathan Wrigley:</strong> We segued.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:37] <strong>Marc Benzakein:</strong> We segued. But there was a time as crazy as it is, that when you wanted to get on the internet, it had to be intentional. You had to deliberately want to get on the internet. So if you went traveling and you had dial up access, you would have to hook up your laptop computer to a modem, unplug the phone line from the hotel phone line, plug it into your computer, and then hope that the dialing worked, right? That you could get an outside line and that it would take you to the internet and that you&#8217;d be able to have a connection. And then it would, nine times out of ten, it would be a long distance number that you had to call because you were in a hotel somewhere else. And now if we go into a hotel that doesn&#8217;t have WiFi, we freak out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:21] <strong>Nathan Wrigley:</strong> Yeah. It&#8217;s like, what&#8217;s going on? This isn&#8217;t normal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:25] <strong>Marc Benzakein:</strong> Welcome to the 20th century, I mean.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:27] <strong>Nathan Wrigley:</strong> I feel like we&#8217;ve grown up in such an interesting time. If you look back and if, like me, you&#8217;re into things like archaeology. Archaeology really does show that for most of humanity, especially if you go pre-history, thousands of years go by and the innovation is very small. You know, there might be one or two little things which built up this growing corpus of things which humanity use.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it might be that somebody invents a slightly new way of cutting the wheat down, or it might be a new way of building a wall or what have you. And that&#8217;s the pattern of history. Slow, fairly slow, pedestrian until you get to much more recent times, couple of hundred years ago, and things start to pick up speed. And now we&#8217;re at a point where, goodness knows what is going to happen even in the next six months, especially in the realm of AI. We really are at a rate of change, which is very difficult to keep track of.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it&#8217;s exciting. It&#8217;s a time when everything is up for grabs. It really is exciting. And hopefully we are going to maintain that enthusiasm, maintain that interest. Make sure that, you know, we&#8217;re all safe and well fed and everybody&#8217;s looked after. Let&#8217;s hope those kind of things happen. But what a breathtaking time to live in. What an interesting time we are in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:46:43] <strong>Marc Benzakein:</strong> Well, I mean the idea of the internet, and I remember saying this when we started our internet service provider. I said, look, we have an opportunity to level the playing field for businesses. It doesn&#8217;t matter if you&#8217;re small or if you&#8217;re big. On the web, it all looks the same. And I think that that&#8217;s always been kind of one of the drivers for a lot of us, especially in the open source world, is this idea of leveling the playing field between kind of the haves and the have nots, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we have the same access to knowledge that people with means might have. We have the same access to products. We have all the same accesses. So in many ways, from a consumption level, I&#8217;m talking about consuming knowledge as well as products, but from a consumption level, we have a level playing field. From the other side of things, it&#8217;s not as level as it used to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A Walmart or an Amazon obviously is going to show up in every search for everything, as opposed to back in the day, all you really had to do was just put in a few keywords and somehow or another you&#8217;d show up on Yahoo or AltaVista or Ask Jeeves or whatever it was at the time, you know, before Google came along. And then Google came along and the same thing was still true for a while, where you could like do just minimal amounts of SEO and get attention to your website and get business.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the idea and I think the mission of the internet kind of should always be to keep the playing field level. I just don&#8217;t know that that&#8217;s necessarily possible because obviously the people who have the power and the money are going to be able to tilt things in their direction. But having said that, it is still the greatest opportunity for us to level the playing field of anything out there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:33] <strong>Nathan Wrigley:</strong> Oh, that&#8217;s such a good way, I think we should probably end it on that, because that&#8217;s such a nice and optimistic note actually, in many ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We began this conversation not really knowing where we were going to end up, and that has proved to be the case. We really did go in all sorts of different directions there, but absolutely fascinating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, we revealed a lot about our own past and our sort of heuristics and intuitions about how it&#8217;s going to be for our children&#8217;s generation, and what we&#8217;ve enjoyed and what we think might be of concern in the future. That was absolutely fascinating. Marc Benzakein, where can we find you online, 24/7?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:49:05] <strong>Marc Benzakein:</strong> You can find me online, not 24/7, I actually do try to take some time off of technology. But I am with MainWP. I do their marketing and partnerships, for MainWP, which is a fantastic WordPress management dashboard. That&#8217;s my plug. And you can also find me on LinkedIn. You can find me on Twitter, Marc Benzakein. I&#8217;m pretty sure I&#8217;m the only Marc Benzakein out there. I&#8217;m marcbenzak Twitter and Bluesky and those things. And then you can find me on Facebook and I&#8217;m just kind of generally all over the place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:49:38] <strong>Nathan Wrigley:</strong> I will endeavor to find those links and I&#8217;ll drop them into the show notes. So if you go to wptavern.com and search for, well, I suspect if you just search for Marc&#8217;s first name, which is Marc with a C, M-A-R-C. If you search for that, you&#8217;ll probably come up in the search. But Benzakein, B-E-N-Z, as we say in the UK, A-K-E-I-N. Marc Benzakein, thank you so much for a really interesting chat today. I appreciate that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:50:03] <strong>Marc Benzakein:</strong> Thanks for having me, Nathan. Appreciate it.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://x.com/MarcBenzak\">Marc Benzakein</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Marc’s story is one that spans nearly the entire history of the Internet. With roots reaching back to the mid-90s. He explores how curiosity and an enthusiastic embrace of technology led him from running a small coffee importing business, accepting payments by snail mail, fax, then email, to helping wire up schools for Internet access when modems worked incredibly slowly, and only a handful of people were online.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This episode is a departure from our usual topics about plugins, themes, and WordPress community news. Instead, we’re more in the business of reminiscing this week. Taking a reflective walk down memory lane to look at how the Internet has evolved, not just as a technology, but as an integral part of society that’s transformed how we work, communicate, and think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Marc shares some personal stories, building bulletin board systems, forging long-distance friendships over phone lines and slow modems, and watching as Internet access shifted from an intentional, difficult-to-navigate hobby for the few, to an invisible, always-on utility that we all take for granted.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about how technology has affected not only business and productivity (often creating more work instead of less), but also our attention spans, expectations around entertainment, the pace of life, and even the social fabric that binds us together. We discuss the cultural shifts that came with always-connected living, digital minimalism, and the recent push by younger generations to step back from tech and reclaim a bit of analog life.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We chat about the early optimism of open standards, the rise of walled gardens and social networks, and the challenges of regulation, commercialisation, and the balancing act between freedom and responsibility online.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Marc’s perspective is shaped by decades of direct technical experience, as well as thoughtful observations of how technology is reshaping the world around us, sometimes for the better, sometimes in ways we need to pause and question.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you’re nostalgic for the old days of dial-up, intrigued by how the Internet’s culture has shifted, or curious about how these transformations might play out as new technologies like AI reshape society, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://mainwp.com\">MainWP</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/AOL\">AOL</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/Prodigy_(online_service)\"> Prodigy</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/Gopher_(protocol)\"> Gopher</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wptavern.com/serverpress-is-shutting-down\">ServerPress Is Shutting Down</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/LANtastic\">LANtastic</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/Novell\">Novell</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/Bulletin_board_system\">BBS (Bulletin board system)</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/WWIV\">WWIV</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/Amateur_radio\">Ham radio</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/MarcBenzak\">Marc on X</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.linkedin.com/in/marc-benzakein/\">Marc on LinkedIn</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://bsky.app/profile/marcbenzak.bsky.social\">Marc on Bluesky</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2026 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress.org blog: Be Part of WordCamp Asia 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2026/01/wordcamp-asia-2026/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16192:\"<p class=\"wp-block-paragraph\">WordCamp Asia is back in 2026, this time in Mumbai, India, and it’s building on a year that showed just how ambitious and connected the WordPress community has become. Now is the time to get involved. Get your ticket, explore sponsorship opportunities, and help spread the word.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-c124d1c4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/event-pass/\" rel=\"noreferrer noopener\" target=\"_blank\">Get Your Event Pass</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/call-for-sponsors/\" rel=\"noreferrer noopener\" target=\"_blank\">Become a Sponsor</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://asia.wordcamp.org/2026/\" rel=\"noreferrer noopener\" target=\"_blank\">About WordCamp Asia</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">In 2025, more than 1,400 attendees from 71 countries gathered in person, with nearly 15,000 more joining online for <a href=\"https://wordpress.org/news/2025/02/shaping-tomorrow-at-wordcamp-asia-2025/\" rel=\"noreferrer noopener\" target=\"_blank\">WordCamp Asia 2025</a>. With notable guests like WordPress <span style=\"margin: 0px; padding: 0px;\">Co-founder <a href=\"https://profiles.wordpress.org/matt/\" rel=\"noreferrer noopener\" target=\"_blank\">Matt Mullenweg</a> and Gutenberg Lead Architect <a href=\"https://profiles.wordpress.org/matveb/\" rel=\"noreferrer noopener\" target=\"_blank\">Matías Ventura</a>, and</span> a diverse lineup of speakers and panelists from across the ecosystem, WordCamp Asia 2025 brought together a community actively shaping the future of the open web.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">It&#8217;s the people. It&#8217;s the friendships and the stories.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Matt Mullenweg, WordPress Cofounder</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp isn’t just about sessions and schedules. It’s about connection. It’s about learning directly from people who are building, scaling, and sustaining WordPress in the real world. It’s about sharing ideas, debating the future of the open web, and leaving with renewed energy for the work ahead. And in 2026, that spirit returns stronger than ever.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-border-color has-darker-grey-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-color: #1c2024; border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18537\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1914.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18527\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1989.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18530\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1920.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18616\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/WORDCAMPASIA2025_PH_PICC_DAY01_CONTRIBUTORSDAY_JOHN_CARLO_PATTAGUAN-474.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18615\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/T2S_6305.jpg?resize=1024%2C684&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18536\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC07465.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Tickets for WordCamp Asia 2026 are on sale now, and this is the moment to secure your spot. WordCamps are intentionally priced to remain accessible, and early ticket sales help organizers plan an inclusive, high-quality experience for everyone.</p>\n\n\n\n<div class=\"wp-block-cover wp-elements-0b95616698be07100358c612d6a7c795\"><img alt=\"\" class=\"wp-block-cover__image-background wp-image-19746 size-large\" height=\"455\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/wca-hero-purple.webp?resize=1024%2C455&#038;ssl=1\" width=\"1024\" /><span class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-container-core-cover-is-layout-063a8677 wp-block-cover-is-layout-constrained\">\n<p class=\"has-text-align-center has-luminous-vivid-amber-color has-text-color has-link-color has-eb-garamond-font-family has-huge-font-size wp-elements-fc6f7f5274402af690db6c3dfeb817bc wp-block-paragraph\" style=\"margin-top: 0; margin-bottom: 0;\"><strong>Join 3,000+ Web Professionals</strong></p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">April 9 – 11, 2026 | Jio World Convention Centre, Mumbai, India</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background has-eb-garamond-font-family has-large-font-size has-custom-font-size wp-element-button\" href=\"https://asia.wordcamp.org/2026/event-pass/\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>Get Your Event Pass</strong></a></div>\n</div>\n</div></div>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia is also made possible by the organizations that step up to support it. Sponsorship plays a critical role in keeping the event accessible, supporting contributors and volunteers, and ensuring the experience reflects the values of the WordPress project. For sponsors, WordCamp Asia 2026 offers a rare opportunity to connect with a highly engaged, global audience in a setting built on trust, collaboration, and shared purpose.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Sponsorship packages are designed to support a wide range of organizations, from local companies to global businesses building products and services on WordPress. Beyond visibility, sponsors become part of the story—helping sustain the ecosystem and invest directly in the community that makes WordPress possible.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-b8b9d790 wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-23441af8 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-embed aligncenter is-type-rich is-provider-canva wp-block-embed-canva\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color wp-elements-ba159f72435edac28651a9149c455a8c wp-block-paragraph\">If your company is interested in becoming a sponsor or you would like to know more, please reach out.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background has-eb-garamond-font-family has-large-font-size has-custom-font-size wp-element-button\" href=\"https://asia.wordcamp.org/2026/call-for-sponsors/\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>Become a Sponsor</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">At every level, WordCamp Asia is powered by people. Organizers, volunteers, speakers, sponsors, and attendees all contribute to an experience that reflects WordPress’s shared values of openness and collaboration. It’s a place where new voices are welcomed, long-time contributors reconnect, and ideas move from conversation to action.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-border-color has-darker-grey-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-color: #1c2024; border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18533\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1853.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18547\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-T2S_5388.jpg?resize=1024%2C684&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18523\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250220-DSC_1800.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18545\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-250221_12-35-12_N7A00461_NExT.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18543\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-DSC_2549.jpg?resize=1024%2C683&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"wp-image-18546\" height=\"684\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/02/20250221-IMG_3709.jpg?resize=1024%2C684&#038;ssl=1\" style=\"border-radius: 2px;\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia 2026 is more than an event—it’s a moment to come together, reflect on where we are, and help shape what comes next. Whether you’re attending for the first time, returning for another year, or supporting the event as a sponsor, your involvement helps strengthen the WordPress ecosystem and the global community behind it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ll see you in Mumbai.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2026 12:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Open Channels FM: Open Channels FM v7.0 Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114485\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://openchannels.fm/open-channels-fm-v7-0-changelog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"Our v.7.0 changelog highlights Open Channels FM structure, including new channels, a podcast revival, updated features, and plugin additions.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2026 09:39:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Cancer Founder Mode\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151128\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2026/01/cancer-founder-mode/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1593:\"<p class=\"wp-block-paragraph\">Sid Sijbrandi, a friend and a former CEO of <a href=\"https://about.gitlab.com/\" target=\"_blank\">Gitlab</a>, has <a href=\"https://x.com/sytses/status/2013441820630643136\">started to share some of the story</a> of his journey with cancer.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Manager mode assumes that existing systems will surface the best options. When I was first diagnosed with cancer in 2022, I delegated the crucial analyses and decisions about my care to others. In late 2024, when my cancer reappeared and my doctors told me I had exhausted the standard of care and there were no trials for my situation, I realized that assumption might, quite literally, kill me. Founder Mode was my only option.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Founder Mode meant going deep on every diagnostic and treatment option. It meant assembling a team of physicians and scientists to work from first principles to understand what was possible beyond standard protocols. Together, we paved new roads to access the very cutting edge of science and technology. Today, thanks to the efforts of many people around the world and the support of my wife Karen, I currently have no evidence of disease.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Sid was already very inspiring before this journey, and this is especially impressive. <a href=\"https://centuryofbio.com/p/sid\">Elliot Hershberg has the full story and analysis</a>, including some predictions for the future of cancer treatment.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2026 06:14:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress.org blog: A New Home for WordPress Education Programs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2026/01/wordpress-education-programs-new-home/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8775:\"<p class=\"wp-block-paragraph\">Over the past few weeks, a new space has taken shape on WordPress.org for students who want to learn, build, and contribute. <a href=\"https://wordpress.org/education/\">WordPress Education programs</a> bring together initiatives that help students enter the WordPress ecosystem through clear, accessible entry points that lead to real-world practice.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With hands-on initiatives and supportive communities, participants can grow new skills and take their first steps as contributors. Across campuses and communities worldwide, learners publish real projects, build practical experience, and gain confidence as part of open source creation.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19638\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/8467ac53c5cd33b1.95580622-scaled-2.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><figcaption class=\"wp-element-caption\"><em><a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/8467ac53c5/\">photo</a> by <a href=\"https://wordpress.org/photos/author/whyviru/\">Virendra Kumar Yadav</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</em></figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">A clearer path into the WordPress ecosystem</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Education is designed to help students turn knowledge into practice, discover their strengths, and understand how their contributions can make a real impact through three core programs: WordPress Campus Connect, WordPress Credits, and WordPress Student Clubs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Through hands-on campus events, such as WordPress Campus Connect, on-campus groups like WordPress Student Clubs, and a practice-based program called WordPress Credits, participants can gain practical experience, publish real-world projects, and build confidence as contributors to a global culture of open-source creation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">At its heart, these WordPress education programs are about three simple ideas:</p>\n\n\n\n<p class=\"wp-block-paragraph\">Learn. Build. Connect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This update brings WordPress education programs together in one place, with an easy way to explore initiatives, understand how they work, and take the next step.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You will find:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A home for WordPress Education programs and updates</li>\n\n\n\n<li>Clear “how to get involved” paths for students, educators, mentors, organizers, and sponsors</li>\n\n\n\n<li>Stories, highlights, and examples of real projects created through the programs</li>\n\n\n\n<li>Links to the Education Handbook for program guidelines and resources</li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-d1b48064 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Want to learn more about WordPress education opportunities?</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/education/\">Visit The Portal</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"><em><em>You can also view more information from the <a href=\"https://make.wordpress.org/community/handbook/education/\">WordPress Community Education Programs Handbook</a>. Learn how this serves as a central guide and resource for all community-driven educational initiatives.</em></em></p>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h4 class=\"wp-block-heading has-text-align-left\">WordPress <br />Campus Connect</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Campus Connect is a growing global learning initiative that brings hands-on WordPress learning directly to the students on their campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The organizers can come from within educational institutions or from the local communities to help deliver WordPress programming and create the future stewards of WordPress.<br /><br />Learn more: <a href=\"https://wordpress.org/education/campus-connect/\">https://wordpress.org/education/campus-connect/</a><br /></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h4 class=\"wp-block-heading has-text-align-left\">WordPress <br />Credits</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Credits is a contribution-based program by the WordPress Foundation that connects higher education students with the global WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Educational institutions partner with the WordPress Foundation to offer students credits toward their degrees for contributing 150 hours to the WordPress project.<br /><br />Learn more: <a href=\"https://wordpress.org/education/credits/\">https://wordpress.org/education/credits/</a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h4 class=\"wp-block-heading has-text-align-left\">WordPress <br />Student Clubs</h4>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Student Clubs empower students to build on-campus WordPress communities that keep learning going throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the spirit of our local community meetups, these groups operate as on-campus equivalents, keeping students engaged and connected with their local WordPress communities.<br /><br />Learn more: <a href=\"https://wordpress.org/education/student-clubs/\">https://wordpress.org/education/student-clubs/</a></p>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Support This Growing Movement</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Help spread the word, and let friends, students, and others know how they can contribute to this growing effort, including a widely expanding translation effort. WordPress Education has already been translated into 10 new languages. WordPress Education is powered by people who believe in open learning and the power of collaboration.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter has-darker-grey-background-color has-background is-style-rectangular\" style=\"margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;\"><div class=\"\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/alumnos-tabajando-Campus-Connect-Catarroja-scaled-1.webp?ssl=1\" /></figure><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-7-scaled-1.webp?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25-3-scaled-1-768x1024.webp?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/9168ab66690a1aa4.23083692-1024x576.jpg?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Campus-Connect-Catarroja-25.webp?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Patri-alumnos-Campus-Connect-Catarroja-25-scaled-1.webp?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-University-of-Brahmanbaria-1-scaled-1-1024x547.jpg?ssl=1\" /></figure><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCC-Zamboanga-1-scaled-1-1024x768.jpg?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/WPCreditsMentorsAtWCPISA2025-1-scaled-1-1024x683.jpg?ssl=1\" /></figure></div></div></div></div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jan 2026 17:14:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Open Channels FM: Open Channels FM v7.0 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://openchannels.fm/open-channels-fm-v7-0-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"In this episode, BobWP announces the release of Open Channels FM version 7.0, detailing significant updates, rebranding changes, new hosting voices, and improved sponsorship strategies for a revamped podcast experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jan 2026 09:57:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weston Ruter: Post Date Block: Published &amp;amp; Modified\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://weston.ruter.net/?p=38580\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://weston.ruter.net/2026/01/19/post-date-block-published-modified/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22580:\"<p>I&#8217;ve had an itch I&#8217;ve wanted to scratch for a while. A year ago, I re-developed my blog here to use the Twenty Twenty-Five block theme replacing the Twenty Twenty classic theme. Something I wanted to do was show a post&#8217;s published date followed by the modified date if it differed. For example, for WCUS 2024 I published <a href=\"https://weston.ruter.net/2024/09/12/my-portland-picks/\">My Portland Picks</a> to share my favorite things to do in the city. Since WCUS 2025 was also in Portland last year, I updated the post with my latest picks. To make it clear it had been changed, I manually added a “Post updated for 2025” paragraph at the beginning of the post. But I wanted to avoid having to keep doing this for such evergreen content.</p>\n\n\n\n<p>There are two blocks listed in the block inserter for dates: <a href=\"https://wordpress.org/documentation/article/post-date-block/\">Date</a> and <a href=\"https://wordpress.org/documentation/article/post-modified-date-block/\">Modified Date</a>. (Previously these block names started with “Post” but these were <a href=\"https://github.com/WordPress/gutenberg/pull/53492\">removed</a> in WordPress 6.4.) In reality, these two blocks are just variations of the one Date block. You could turn a Date block into a Modified Date block by enabling this block setting:</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"Display last modified date toggle.\n\nOnly shows if the post has been modified.\" class=\"wp-image-38581 not-transparent\" height=\"225\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2026/01/display-last-modified-date.png?resize=700%2C225&#038;ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<p>With block bindings in WordPress 6.9, the Date block became <a href=\"https://github.com/WordPress/gutenberg/pull/70585\">further abstracted</a> to be able to represent any date, not just a post&#8217;s publish date or modified date. When a Date block is inserted, you can now decide to bind the block to either of these dates:</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"Date block settings, with the transform to variation menu opened showing the Post Date and Modified Date as options. Instead of displaying a custom date, the variations allow showing the post\'s publish date or the post\'s last updated date.\" class=\"wp-image-38582 not-transparent\" height=\"700\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2026/01/date-block-variations.png?resize=621%2C700&#038;ssl=1\" width=\"621\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<p>The key word there is “either”. The setting I was looking for was missing: the ability to display the publish date <em>and</em> the modified date (if it differs).</p>\n\n\n\n<p>I did find Gutenberg issue <a href=\"https://github.com/WordPress/gutenberg/issues/53099\">#53099</a> opened by Carolina Nymark where she was reporting that it was confusing that the old “display modified date” toggle actually causes the modified date to be displayed instead of the publish date:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The info I was looking for was whether, when toggled on, it would display both the published and modified dates, or display the modified date instead of the published date, as from the settings alone it’s not immediately clear</p>\n</blockquote>\n\n\n\n<p>Commenting on that issue, Ronnie Burt <a href=\"https://github.com/WordPress/gutenberg/issues/53099#issuecomment-2855553546\">said</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Feedback after using this block on multiple sites in templates for both posts and pages. The &#8216;modified date&#8217; block doesn&#8217;t show anything if the post has never been updated. This makes it really challenging to use, as there will be a blank spot on the front end for new posts or pages without any edits.</p>\n\n\n\n<p>It would be more useful to show the date published if the post has no edits.</p>\n</blockquote>\n\n\n\n<p>Carolina <a href=\"https://github.com/WordPress/gutenberg/issues/53099#issuecomment-2856811501\">responded</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The problem is that there is no one scenario that will work for <strong>all</strong> use cases. Some users and designs wants to display both the original publishing date and the modified date. So no matter how this block is updated, it will break for <strong>someone</strong>.</p>\n\n\n\n<p>Your best option may be to register a block binding with a callback function that displays the post date, to get the exact conditions that <strong>you</strong> need, and then insert a paragraph with this block binding, instead of using the post date block.</p>\n</blockquote>\n\n\n\n<p>A few months later, when I discovered the issue, I <a href=\"https://github.com/WordPress/gutenberg/issues/53099#issuecomment-3194738185\">commented</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>To me it seems like the block should facilitate showing the published date and then also show the modified date <em>if</em> it is different, with a prefix like &#8220;Updated: &#8221; or some other parenthetical treatment. I don&#8217;t think the modified date should ever take over the published date. I&#8217;m not sure the best way to achieve that other than by adding a plugin which filters the Date block to append the desired content. I&#8217;m not sure how that could be handled in the UI, given we&#8217;re dealing with inline content and there is no ability to hide blocks (cf. <a href=\"https://github.com/WordPress/gutenberg/issues/50756\">#50756</a>), and there&#8217;d have to be a condition like &#8220;Only show this block if the rendered date/time of the published date is not the same as the rendered date/time of the modified date.&#8221;</p>\n</blockquote>\n\n\n\n<p>So this is what I wanted, but the Date block didn&#8217;t support it. So I started exploring something that would implement my desired use case.</p>\n\n\n\n<p>Accounting for all the different scenarios adds complexity to the block. Rendering a single publish date or modified date is simple enough. But if the modified date needs to be displayed <em>conditionally</em> then how is this configured in the editor? Namely, if both dates are displayed, then one or both of the dates would need to have some prefix indicating what the date refers to. The two configurations I had in mind were prefixing the modified date only:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>December 25, 2025 (Modified: January 1, 2026)</p>\n</blockquote>\n\n\n\n<p>Or else putting each on a separate line and having prefixes for each:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Published: December 25, 2025<br />Modified: January 1, 2026</p>\n</blockquote>\n\n\n\n<p>There is an existing Gutenberg issue <a href=\"https://github.com/WordPress/gutenberg/pull/61920\">#61920</a> which is about adding prefixes and suffixes to the block similarly to the <a href=\"https://github.com/WordPress/gutenberg/pull/40559\">Categories block</a>. But these prefixes are unconditional for only a single date. I wanted these prefixes added conditionally for when the modified date is displayed in addition to the published date.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A New Plugin</h2>\n\n\n\n<p>Ultimately, I put together a plugin to implement what I wanted: <a href=\"https://github.com/westonruter/post-date-modified\"><strong>Post Date Block: Published &amp; Modified</strong></a>. It&#8217;s currently on GitHub but I&#8217;ve also submitted it to the WordPress.org directory. </p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><a href=\"https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fwestonruter%2Fpost-date-modified%2Fmain%2F.wordpress-org%2Fblueprint%2Fblueprint.json\" rel=\" noreferrer noopener\" target=\"_blank\"><img alt=\"Try it in Playground\" class=\"wp-image-38587\" height=\"104\" src=\"https://weston.ruter.net/wp-content/uploads/2026/01/playground-preview-button.svg\" style=\"width: 235px; height: auto;\" width=\"447\" /></a></figure>\n\n\n\n<p><em><strong>Update:</strong> It&#8217;s now live on plugin directory!</em></p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/post-date-modified/\">Post Date Block: Published &amp; Modified</a></blockquote>\n</div></figure>\n\n\n\n<p>Once active, when you are editing the settings for the Date block for the Post Date variation, a new “With Modified Date” panel appears. Inside that panel there is a new toggle:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Show modified date when different from published date</p>\n</blockquote>\n\n\n\n<p>The two dates are rendered in the supplied date format, and only if they then differ will the modified date be displayed after the published date. This prevents the modified date from appearing as a duplicate when the post is updated on the same day it was published.</p>\n\n\n\n<p>When that toggle is enabled, two new sets of fields are presented for adding a prefix and suffix to both the published date and the modified date. There is also a toggle for whether the modified date should be displayed on a separate line. Here are the settings for the two configurations I mentioned previously, one where the modified date is displayed on a separate line and another where it is displayed on the same line:</p>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large wp-lightbox-container\"><img alt=\"Settings for the Post Date block where the modified date is shown when it is different than the published date. The modified date is displayed on a separate line after the published date. Both the published date and modified date have &quot;Published&quot; and &quot;Modified&quot; prefixes.\" class=\"wp-image-38585 not-transparent\" height=\"700\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2026/01/post-date-modified-two-lines.png?resize=254%2C700&#038;ssl=1\" width=\"254\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Settings for the Post Date block where the modified date is shown when it is different than the published date. The modified date is displayed on the same line after the published date, and only modified date has a prefix and a suffix to give it a parenthetical rendering.\" class=\"wp-image-38584 not-transparent\" height=\"700\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2026/01/post-date-modified-one-line.png?resize=255%2C700&#038;ssl=1\" width=\"255\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</div>\n</div>\n\n\n\n<p>In terms of the frontend rendering, here&#8217;s what the Date markup looks like right after publishing on Christmas:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-xml\"><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">div</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"wp-block-post-date\"</span>&gt;</span>\n	<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">time</span> <span class=\"hljs-attr\">datetime</span>=<span class=\"hljs-string\">\"2025-12-25T18:14:21-08:00\"</span>&gt;</span>\n		December 25, 2025\n	<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">time</span>&gt;</span>\n<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">div</span>&gt;</span></code></span></pre>\n\n\n<p>And here is how the block is rendered after having been modified on New Year&#8217;s Day, in the two-line configuration:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-xml\"><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">div</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"wp-block-post-date post-date-modified\"</span>&gt;</span>\n	Published:\n	<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">time</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"entry-date published\"</span> <span class=\"hljs-attr\">datetime</span>=<span class=\"hljs-string\">\"2025-12-25T18:14:21-08:00\"</span>&gt;</span>\n		December 25, 2025\n	<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">time</span>&gt;</span>\n	<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">br</span>&gt;</span>\n	<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">span</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"modified\"</span>&gt;</span>\n		Modified:\n		<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">time</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"updated\"</span> <span class=\"hljs-attr\">datetime</span>=<span class=\"hljs-string\">\"2026-01-01T21:20:05-08:00\"</span>&gt;</span>\n			January 1, 2026\n		<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">time</span>&gt;</span>\n	<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">span</span>&gt;</span>\n<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">div</span>&gt;</span></code></span></pre>\n\n\n<p>Note the added microformat classes to disambiguate the published date from the modified date. I was really happy to be able to leverage the <a href=\"https://developer.wordpress.org/reference/classes/wp_html_tag_processor/\">HTML Tag Processor</a> to handle insertion of the prefixes, suffixes, newline, and class names!</p>\n\n\n\n<p>This plugin solves my use case, but it&#8217;s primarily a prototype/stopgap until something lands in core. The user experience for this doesn&#8217;t feel ideal, but I can&#8217;t think of a better option at the moment. Note also that there is currently no preview in the editor, so you have to save the changes and go to the frontend to see the results. (My <a href=\"https://weston.ruter.net/2014/09/27/wcsyd-talk-customize-all-the-things/\">Customizer self</a> weeps.) I didn&#8217;t want to fork the Date block&#8217;s edit function to implement full preview in the editor, and it would be of little value anyway since when editing a block template the Date block now just shows ”Invalid date” anyway due to there being no post context for the block binding.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Future</h2>\n\n\n\n<p>The ideal solution perhaps would <a href=\"https://github.com/WordPress/gutenberg/pull/61920#issuecomment-2156095190\">involve Bits</a> (now <a href=\"https://github.com/WordPress/gutenberg/issues/73929\">Shortblocks</a>). Maybe the default view for a Post Date block when editing a block template would be to show the view when the modified date is the same as the published date. But then there could potentially be a popover that could allow configuring how the block should render when the modified date is different. With Shortblocks, these tokens could be inserted inline with the content and moved around inside of a paragraph block. This would avoid the need to supply a suffix/prefix in the detached block settings sidebar.</p>\n\n\n\n<p>In the meantime, I hope my plugin is helpful for keeping your readers updated!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-medium-font-size\">Where I&#8217;ve posted about this:</p>\n\n\n\n<ul class=\"wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-linkedin  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.linkedin.com/posts/westonruter_post-date-block-published-modified-weston-activity-7419257759004651522-LPT9\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">LinkedIn</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-bluesky  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://bsky.app/profile/weston.ruter.net/post/3mcti4zf5as2w\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bluesky</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-threads  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.threads.com/@westonruter/post/DTuMA_mDoGY\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.3 11.3c-.1 0-.2-.1-.2-.1-.1-2.6-1.5-4-3.9-4-1.4 0-2.6.6-3.3 1.7l1.3.9c.5-.8 1.4-1 2-1 .8 0 1.4.2 1.7.7.3.3.5.8.5 1.3-.7-.1-1.4-.2-2.2-.1-2.2.1-3.7 1.4-3.6 3.2 0 .9.5 1.7 1.3 2.2.7.4 1.5.6 2.4.6 1.2-.1 2.1-.5 2.7-1.3.5-.6.8-1.4.9-2.4.6.3 1 .8 1.2 1.3.4.9.4 2.4-.8 3.6-1.1 1.1-2.3 1.5-4.3 1.5-2.1 0-3.8-.7-4.8-2S5.7 14.3 5.7 12c0-2.3.5-4.1 1.5-5.4 1.1-1.3 2.7-2 4.8-2 2.2 0 3.8.7 4.9 2 .5.7.9 1.5 1.2 2.5l1.5-.4c-.3-1.2-.8-2.2-1.5-3.1-1.3-1.7-3.3-2.6-6-2.6-2.6 0-4.7.9-6 2.6C4.9 7.2 4.3 9.3 4.3 12s.6 4.8 1.9 6.4c1.4 1.7 3.4 2.6 6 2.6 2.3 0 4-.6 5.3-2 1.8-1.8 1.7-4 1.1-5.4-.4-.9-1.2-1.7-2.3-2.3zm-4 3.8c-1 .1-2-.4-2-1.3 0-.7.5-1.5 2.1-1.6h.5c.6 0 1.1.1 1.6.2-.2 2.3-1.3 2.7-2.2 2.7z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">Threads</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-mastodon  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://mastodon.social/@westonruter/115925902882363377\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M23.193 7.879c0-5.206-3.411-6.732-3.411-6.732C18.062.357 15.108.025 12.041 0h-.076c-3.068.025-6.02.357-7.74 1.147 0 0-3.411 1.526-3.411 6.732 0 1.192-.023 2.618.015 4.129.124 5.092.934 10.109 5.641 11.355 2.17.574 4.034.695 5.535.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.129.539c-2.165-.074-4.449-.233-4.799-2.891a5.499 5.499 0 0 1-.048-.745s2.125.52 4.817.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.507.475-6.507zm-4.024 6.709h-2.497V8.469c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.312v3.349h-2.483v-3.35c0-1.536-.602-2.312-1.802-2.312-1.085 0-1.628.655-1.628 1.944v6.119H4.832V8.284c0-1.289.328-2.313.987-3.07.68-.758 1.569-1.146 2.674-1.146 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.304z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">Mastodon</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://x.com/westonruter/status/2013491721040965991\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li></ul>\n\n\n\n<p></p>\n<p>The post <a href=\"https://weston.ruter.net/2026/01/19/post-date-block-published-modified/\">Post Date Block: Published &amp; Modified</a> appeared first on <a href=\"https://weston.ruter.net\">Weston Ruter</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jan 2026 05:45:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: AI Psychosis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151118\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2026/01/ai-psychosis/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1531:\"<p class=\"wp-block-paragraph\">One of the most concerning trends I&#8217;ve seen is that, as people adopt AI, it captures those for whom it was designed. That previous sentence went through several revisions at various layers of intelligence&#8230; the spell-checker, grammar-checker, Grammarly, <a href=\"https://writewithharper.com/\">Harper</a>, maybe more, all attacking the words that spill from my divine intelligence and then interact with yours.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anthropic has published a really interesting essay and paper, <a href=\"https://www.anthropic.com/research/assistant-axis\">The assistant axis: situating and stabilizing the character of large language models</a>. You need infoguards to protect your mind.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://blog.samaltman.com/\">Sam Altman</a> was <a href=\"https://x.com/sama/status/1716972815960961174\">prescient in 2023 when he said</a>,</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">i expect ai to be capable of superhuman persuasion well before it is superhuman at general intelligence, which may lead to some very strange outcomes</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Some very smart and talented friends are going down rabbit holes that don&#8217;t have good ends. My world is small; when you extrapolate this out to the 800M+ MAUs of ChatGPT, there&#8217;s probably a lot of weird stuff happening out there. We live in the most interesting times.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jan 2026 04:26:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Open Channels FM: Thoughts From the Brain, Not a Prompt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://openchannels.fm/thoughts-from-the-brain-not-a-prompt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"BobWP kicks off his posts with Creator Meanderings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Jan 2026 11:21:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Bob Weir\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://ma.tt/2026/01/bob-weir/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:372:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">They say that blood is thicker than water, and what we had was way thicker than blood.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Bob Weir on Jerry Garcia. <a href=\"https://www.youtube.com/watch?v=tIe1jMbyhgw\">John Mayer gave Bob a great eulogy</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Jan 2026 06:51:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Bacon Egg Cheese\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2026/01/bacon-egg-cheese/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2072:\"<p class=\"wp-block-paragraph\">One of my favorite travel hacks is finding the Neapolitan pizza oven in the airport, as there’s nothing quite like a fresh pizza sizzling on your plate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">At Houston Intercontinental, which I know like the back of my hand, there was a divine experience at the C Gate nexus at <a href=\"https://www.otgexp.com/experience_locations/george-bush-intercontinental-airport/\">Forno Magico</a>, especially in the morning, when they offer a bacon, egg, and cheese pizza that I would beeline for whenever I had a morning flight. It’s big enough to feed two.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That said, I am disappointed to report that Forno Magico is no longer magical. They stopped salting the oven floor or rotating the pie, and the eggs were sloppily bunched. The dough was dry; it was like they’d never had a good pizza. They’re only heating the oven to 498, not the 905 <a href=\"https://www.pizzanapoletana.org/en/ricetta_pizza_napoletana\">recommended by the Associazione Verace Pizza Napoletana</a>. It was edible but not a delight, as you can see here.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-151103\" height=\"465\" src=\"https://i0.wp.com/ma.tt/files/2026/01/IMG_1386-1024x789.jpeg?resize=604%2C465&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">I hope they rediscover the art of firing pizzas they started with. They’re charging over $20 for it, so plenty of margin for fuel. It would also serve customers much faster! I’ll keep searching for great pizzas in other airports.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a <a href=\"https://www.amazon.com/dp/B0D6PQJ2PF?tag=photomatt08-20\">Gozney</a> or <a href=\"https://www.amazon.com/dp/B0F48FRPW7?tag=photomatt08-20\">Ooni</a> at home (highly recommended!), try making a breakfast pizza. My friend <a href=\"https://www.youtube.com/@ChrisYoungCooks\">Chris Young</a> recommends <a href=\"https://www.youtube.com/watch?v=pdiJ_fMnXOY&amp;t=460s\">this dough recipe</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Jan 2026 22:03:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: A Better Writer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2026/01/a-better-writer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4915:\"<p class=\"wp-block-paragraph\"><a href=\"https://www.nytimes.com/2026/01/13/arts/scott-adams-dead.html\">RIP Scott Adams</a>. Early Dilbert was the first cartoon I fell in love with, and <a href=\"https://web.archive.org/web/20000229085730/http://www.dilbert.com/\">early dilbert.com</a> was one of the first websites I remember visiting. My dad would print out cartoons and put them on his cubicle wall. Between the Dilbert comics, books, <a href=\"https://www.2600.com/\">2600</a>, and <a href=\"https://www.wired.com/\">Wired</a>, I was swimming between what felt like a radical transgressive world online and the reality of my dad putting on a suit and tie every day and working a giant cubicle farm programming computers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s probably underappreciated how Dilbert (and <a href=\"https://en.wikipedia.org/wiki/Office_Space\">Office Space</a>) made millions of better managers by making fun and teaching people what not to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scott could put in a few words things that could transform the way you think, reframe the world. One of his classics, from a now-gone Typepad blog, was <strong>The Day You Became A Better Writer</strong>, which I&#8217;ll reproduce here:</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>I went from being a bad writer to a good writer after taking a one-day course in “business writing.” I couldn’t believe how simple it was. I’ll tell you the main tricks here so you don’t have to waste a day in class.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Business writing is about clarity and persuasion. The main technique is keeping things simple. Simple writing is persuasive. A good argument in five sentences will sway more people than a brilliant argument in a hundred sentences. Don’t fight it.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Simple means getting rid of extra words. Don’t write, “He was very happy” when you can write “He was happy.” You think the word “very” adds something. It doesn’t. Prune your sentences.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Humor writing is a lot like business writing. It needs to be simple. The main difference is in the choice of words. For humor, don’t say “drink” when you can say “swill.”</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Your first sentence needs to grab the reader. Go back and read my first sentence to this post. I rewrote it a dozen times. It makes you curious. That’s the key.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Write short sentences. Avoid putting multiple thoughts in one sentence. Readers aren’t as smart as you’d think.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Learn how brains organize ideas. Readers comprehend “the boy hit the ball” quicker than “the ball was hit by the boy.” Both sentences mean the same, but it’s easier to imagine the object (the boy) before the action (the hitting). All brains work that way. (Notice I didn’t say, “That is the way all brains work”?)</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>That’s it. You just learned 80% of the rules of good writing. You’re welcome.</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Powerful. Profound.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scott also said some not-great things, as the obituary notes. I&#8217;ll share something I posted internally at <a href=\"https://automattic.com/\">Automattic</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">When I was younger, I used to have a more binary view of people, but as I’ve grown, read a ton of biographies, seen the press cycles, and been lucky enough to meet some idols and villains, I’ve become much more comfortable taking everyone as a flawed human being.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I admire or learn from aspects, but that doesn’t mean I would 100% agree with everything. I don’t even 100% agree with my past self!</p>\n\n\n\n<p class=\"wp-block-paragraph\">One thing you’ll note in a lot of biographies is that people who have accomplished great achievements often have flaws or mistakes in equal measure.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Take what lessons you like from people. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I love reading and writing about writing, and improving your writing is one of the best force multipliers for everything else you do in life. If you&#8217;d like to go further on this, the best book I&#8217;ve read on the subject is <a href=\"https://www.amazon.com/dp/B0090RVGW0?tag=photomatt08-20\">On Writing Well by William Zinsser</a>. And if you want more Scott Adams, <a href=\"https://www.astralcodexten.com/p/the-dilbert-afterlife\">read this piece from his doppelgänger Scott Alexander</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Jan 2026 06:48:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WordPress.org blog: WordPress Playground Brings Speed, Stability, and Momentum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2026/01/wordpress-playground-speed-stability-momentum/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10575:\"<p class=\"wp-block-paragraph\">WordPress Playground had a busy year in 2025, with updates that make it more capable for day-to-day development, plugin previews, and learning environments. The project’s latest year-in-review highlights progress across performance, compatibility, database support, and tooling, expanding what can be done in a WordPress environment that runs in the browser and through the command line.</p>\n\n\n\n<p class=\"wp-block-paragraph\">From faster load times to broader plugin support, the throughline is clear: Playground is moving beyond quick demos and into workflows that help developers and educators test, iterate, and share WordPress experiences more easily.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-2bb63ab0 wp-block-buttons-is-layout-flex\" style=\"border-style: none; border-width: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-blue-5-background-color has-background wp-element-button\" href=\"https://wordpress.org/playground/\" style=\"border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;\">Try Playground Now</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19689\" height=\"551\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.13.49-pm.png?resize=1024%2C551&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 30px;\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-constrained wp-container-core-group-is-layout-083c866d wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><strong>Key Takeaways</strong></p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 20px;\"></div>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Plugin previews are more reliable: </strong>99% of the top 1,000 plugins can be installed and activated successfully, making demos and evaluations more trustworthy.</li>\n\n\n\n<li><strong>Everything is faster:</strong> A performance upgrade reduced average response time by 42%, and further optimizations improved overall “time to first useful click.”</li>\n\n\n\n<li><strong>Database tools work in browser:</strong> Improved database compatibility enabled tools like phpMyAdmin to be used directly on <a href=\"https://playground.wordpress.net\">playground.wordpress.net</a>.<br /><strong>More practical tooling for real work:</strong> Testing configurations and previewing changes can happen in one place, without a complete local environment first.</li>\n\n\n\n<li><strong>New visual gallery of blueprints:</strong> A new <a href=\"https://wordpress.github.io/blueprints/\">visual gallery of blueprints</a> provides excellent starting points for various types of sites.</li>\n\n\n\n<li><strong>Global adoption:</strong> Playground was used 1.4 million times globally, with growing documentation translations and community contributions.</li>\n</ul>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Reliable Plugin Previews and Experimentation</h2>\n\n\n\n<p class=\"wp-block-paragraph\">A headline update from 2025 is the focus on compatibility. In testing with the top 1,000 plugins from the WordPress plugin directory, 99% installed and activated successfully. That matters because it raises confidence in what Playground is best known for: letting people try things quickly, without a complex setup, and with fewer surprises.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This highlighted that Playground is increasingly useful as a general-purpose PHP sandbox. Alongside WordPress, it can support standard PHP tools and projects, which makes it easier to explore how WordPress fits into broader development workflows and to share reproducible environments with others.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you try something new and unexpected in Playground, the update encourages you to share what you learn in the <a href=\"https://wordpress.slack.com/archives/playground\">#playground</a> Slack channel, so the community can build a clearer picture of what works well today and what is improving next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Faster Load Times</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Speed was a central theme in 2025. A recent <a href=\"https://make.wordpress.org/playground/2025/12/03/wordpress-playground-2025-year-in-review/\">year-in-review report</a> revealed a 42% reduction in average response time, and this is not just a single change. A series of improvements make Playground feel quicker in the moments people notice most, such as loading WordPress, opening wp-admin, and switching between tasks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Several behind-the-scenes updates were described in plain terms as “less waiting”: checks happen earlier, parts of the experience load in a smarter order, and more content is reused from cache, so repeat actions are snappier.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For people using Playground to review a plugin, validate a bug fix, or teach a class, these improvements mean the same thing: faster feedback loops, with fewer pauses that break concentration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Better Tooling and Compatibility</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In 2025, Playground also became more “toolbox-like” in the browser. The update highlighted features that reduce context switching, such as editing files on the page, building and testing starter configurations (Blueprints) in a dedicated editor, and launching database tools such as phpMyAdmin and Adminer with a single click.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the database side, a significant compatibility upgrade was introduced to improve support for more complex database behavior. The practical outcome is that more WordPress sites and plugins behave as expected in Playground, and more developer tools can run inside the environment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Blueprints also advanced in ways that benefit both builders and sharers. The updates focus on making starter setups easier to create, browse, and reuse, especially when a demo requires content, media, or a specific configuration that should launch consistently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the clearest ways to see that progress is the <a href=\"https://wordpress.github.io/blueprints/\"><strong>WordPress Blueprints Gallery</strong></a>, a community library of ready-to-launch WordPress environments. From practical “building block” examples (such as starting with a specific login role) to demos that automatically install themes and plugins, to richer setups that generate posts and featured images via WP-CLI, the gallery demonstrates how quickly an idea can become a fully functional site that you can browse and share.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Examples:</strong></p>\n\n\n\n<div class=\"wp-block-columns are-vertically-aligned-center has-dark-strokes-grey-background-color has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"border-width: 12px;\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-19694\" height=\"828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.51.02-pm.png?resize=714%2C828&#038;ssl=1\" width=\"714\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><a href=\"https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fwordpress%2Fblueprints%2Ftrunk%2Fblueprints%2Fstylish-press%2Fblueprint.json\"><img alt=\"\" class=\"wp-image-19698\" height=\"828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-2.53.15-pm.png?resize=714%2C828&#038;ssl=1\" width=\"714\" /></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><a href=\"https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fwordpress%2Fblueprints%2Ftrunk%2Fblueprints%2Forganization-kentwood%2Fblueprint.json\"><img alt=\"\" class=\"wp-image-19704\" height=\"826\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/01/Screenshot-2026-01-09-at-3.05.37-pm.png?resize=714%2C826&#038;ssl=1\" width=\"714\" /></a></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"><em>For anyone who wants to experience the power of WordPress without the setup, the gallery serves as a strong reminder of what Playground makes possible: shareable, repeatable site experiences that work the same way every time — ideal for demos, workshops, testing, and “try it now” links. </em></p>\n\n\n\n<p class=\"wp-block-paragraph\">Clear adoption signals back all of this. The review reports 1.4 million uses globally, documentation translations in multiple languages, and growing integration across the plugin directory through Playground-powered previews. It also points to a steady increase in community contribution, from documentation and support to talks and real-world workflows built on top of Playground.<br /><br />A huge thank you to everyone who tried Playground over the past year,  whether you launched a quick demo, tested a change, taught a workshop, or helped make the documentation more accessible in your language. And if there’s anything that would make Playground even more helpful for your day-to-day work, the project actively welcomes ideas and feature requests via the WordPress Playground GitHub issues tracker.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking Ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As we closed out 2025 and now look forward to 2026, we can see several forward-looking initiatives, including work on MySQL binary protocol support (to enhance broader compatibility with MySQL tools) and continued exploration of debugging enhancements, such as expanded XDebug access.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone who last tried Playground as a quick demo environment, 2025’s updates suggested a shift in direction: Playground is increasingly positioned as a practical layer for testing, teaching, previewing, and reviewing WordPress, both in the browser and in local workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Jan 2026 16:53:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"Open Channels FM: Matt Mullenweg on WooCommerce’s Future and Competitive Strengths in Online Commerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://openchannels.fm/matt-mullenweg-on-woocommerces-future-and-competitive-strengths-in-online-commerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"In a special relaunch episode of Do the Woo, hosts discuss WooCommerce\'s evolution with Matt Mullenweg, exploring its advantages, community impact, and future innovations.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Jan 2026 12:20:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2026/01/do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:530:\"<p class=\"wp-block-paragraph\">For my first podcast of the year with the WordPress community, I joined the new Do the Woo podcast! It started with a little technical difficulty but ended up being a great conversation about <a href=\"https://woocommerce.com/\">WooCommerce</a>, <a href=\"https://wordpress.org/\">WordPress</a>, and AI.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Jan 2026 05:48:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: #200 – Corey Maass on His Real-Life AI Tools and Workflows in WordPress Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/podcast/200-corey-maass-on-his-real-life-ai-tools-and-workflows-in-wordpress-development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:78591:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case real life AI tools and workflows in WordPress development.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Corey Maass. Corey&#8217;s been building for the web since the late nineties, starting out in the early days of Photoshop and tables. Learning JavaScript, ASP Classic and PHP, and eventually falling into the world of WordPress around 2010. Since then, he&#8217;s taken on building SaaS apps, managing client projects, and experimenting with a growing number of productivity tools and frameworks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He&#8217;s joined us before, and today he&#8217;s here to share his perspective on what it&#8217;s been like adopting AI tools into his workflows, especially from the point of view of building projects for clients.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although AI has dominated headlines over the last couple of years, Corey brings a practical angle to the conversation. He discusses the evolution of his tech stack and how embracing AI tools like Cursor, Claude Code and GitHub Copilot have completely changed the way he builds software and manages projects, allowing him to work faster, automate code, review, and unlock creativity in places he hadn&#8217;t expected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We hear about how his journey with AI started, how he&#8217;s reimagined old projects using new tools, and how learning to interact with these models, sometimes granular, sometimes letting them run freely, has reshaped his daily workflow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Corey describes the shift from using AI to just save time, to using it as a sounding board for inspiration and idea generation, even weaving it into artistic endeavors like music production.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the discussion centers around how these advances have affected client work with Corey exploring the real world balance of responsibility, efficiency, and the changing nature of value for developers. Do clients care who, or what, wrote the code? Or just that it works? What does authentic creativity mean in an era where prompting and randomness a part of the toolkit?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you&#8217;re a developer, curious about what working alongside AI means, or just wondering about the future of tech, and WordPress, in an increasingly automated world, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you, Corey Maass.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Corey Maass. Hello, Corey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:33] <strong>Corey Maass:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:33] <strong>Nathan Wrigley:</strong> Very nice to have you with us. Corey&#8217;s been on the podcast several times before. He&#8217;s here today to talk about the subject, which almost nobody has touched during the year 2025, that&#8217;s AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But actually I think we&#8217;ve got a curious angle because we&#8217;re not just going to touch it from a sort of more generic point of view, although we might. We&#8217;re going to talk about it from a client point of view and building things for clients and how, I guess, Corey is leveraging that to make life a little bit easier for himself. Let&#8217;s find out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First of all, Corey, would you just introduce yourself? Give us you a little bio, tell us about you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:04] <strong>Corey Maass:</strong> Absolutely, Corey Maass. I currently live in New Hampshire, which is in the northeast of the United States. I&#8217;ve been building for the web since 97, I think. Back in the day when we would do designs in Photoshop and then slice them up and put them in tables. And then I learned JavaScript, and I learned ASP Classic, and I learned PHP, and I got obsessed with building SaaS apps, you know, making websites actually do stuff instead of just look pretty. And then I found WordPress in about 2010 and it&#8217;s all been a wonderful, joyous, rollercoaster ride of happiness without exception.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:45] <strong>Nathan Wrigley:</strong> That&#8217;s lovely. And I think we should end the podcast right there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:48] <strong>Corey Maass:</strong> And I met this wonderful guy named Nathan somewhere along the way, and my heart is full.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:53] <strong>Nathan Wrigley:</strong> It does not get better than that. I really think we should end there. Congratulations, Corey Maass, we&#8217;ll see you next time. No, let&#8217;s get into it properly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:01] <strong>Corey Maass:</strong> And then the robots came.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:03] <strong>Nathan Wrigley:</strong> That&#8217;s right. That&#8217;s what we are going to talk about. But you&#8217;ve been building for a long time. I mean, in terms of the internet, you really are like the heritage, aren&#8217;t you? 1997 was when people were just sort of starting out. I mean, there&#8217;s a few people that go maybe a little bit longer than that, but you&#8217;ve seen the whole thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Seems like in the year 2023, something like that, maybe 2024, certainly 2025, we&#8217;ve now got the advent of companions, AI companions that are helping us to do things online and build websites and so on. And I&#8217;m kind of just curious, let&#8217;s talk about your stack and where it is at the moment, and then we&#8217;ll get into how that stack has changed. But just tell us what you&#8217;re using right now. And we&#8217;re recording that December, 2025. And no doubt that will change fairly soon.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:45] <strong>Corey Maass:</strong> Still changes frequently. We&#8217;re chatting before we started recording and you said, have you updated Mac OS to this glass nonsense? And I went, absolutely. I bought into, to put myself in context, like I bought into the Apple ecosystem a few years ago. And I tend to, when they say update, I update. I might wait a day or two. Usually I will hear about, if something is truly crashing your computer, I&#8217;ll usually hear about it on Reddit or what have you. And so I might wait a day or a week, but I&#8217;m generally an early adopter is the point I&#8217;m trying to make.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But with that said, I&#8217;m also a pragmatic developer. So I want to use the tools that are the most beneficial, but I&#8217;m also not cutting edge, bleeding edge on what model is the absolute best and all that kind of stuff. But I&#8217;m also not not going to use AI once it actually benefits me. So I&#8217;m probably somewhere on one side of the bell curve or the other, but I&#8217;m not bleeding edge.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anyway. So as of today, I am using Cursor as an IDE, but I am not using the AI in Cursor at all. I have been meaning to, but again, it&#8217;s pragmatically. I&#8217;m not trying to use things because they&#8217;re in front of me or what have you. So we can talk about why I wound up using Cursor. But what I generally am doing during the day is opening Terminal inside Cursor and using Claude Code almost exclusively. Which then, a buddy of mine has gotten me back into the process of actually doing pull requests, so that the code gets pushed to Git. And then I&#8217;m running Copilot, which is GitHub&#8217;s AI to do code reviews. That&#8217;s what I was trying to say. I&#8217;ve got Claude generally writing the code, and then I&#8217;ve got GitHub&#8217;s Copilot checking the code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:40] <strong>Nathan Wrigley:</strong> Okay. Yeah, so that&#8217;s where you&#8217;re at the moment. But historically, if we were to gaze back over the last year, let&#8217;s go with that, how often does that iteration change? How often do you move from one thing to another because the landscape has moved or something superior appears to have come along?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:53] <strong>Corey Maass:</strong> Yeah, it&#8217;s kind of amazing. This is part of why I wanted to have this conversation is, for me it started pretty much in March. I went to Thailand for a few weeks visiting a buddy of mine there who&#8217;s a developer, he had to work. Like, every weekend we were running around looking at temples and stuff like that. During the week he had to work, and so I was left to entertain myself. And so doing my usual client work, which was still very clicky, clickly, because it&#8217;s still WordPress, and WordPress hasn&#8217;t quite crossed that bridge, though we&#8217;re working on it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I said, okay, I want to use this time to start my AI journey. That&#8217;s where I said, let me subscribe to Cursor, 20 bucks a month, not unreasonable in the scheme of all of the software subscriptions that I have, and let me see what I can do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I have an app called Timerdoro, which is a productivity timer app, Pomodoro and that kind of thing. Friends and I built it, now it&#8217;s got to be 20 years ago, and we&#8217;ve never figured out how to monetise. In fact, yesterday I finally just slapped some ads on it because I couldn&#8217;t stand it anymore. And, no, that&#8217;s not true. I found an ad network that I wanted to try. But that&#8217;s kind of a perfect indication of how I think of Timerdoro. Timerdoro, I have rewritten at least a dozen times in at least four different, using four different tech stacks because a lot of people use it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It has a hundred users a day or something, which is really cool. None of them want to give me any money, which I totally am fine with. It doesn&#8217;t cost me anything. But it gives me an opportunity to, here is a product that people are using, let me continue to play with it, tweak it, design it, totally rewrite it. And so I rewrote it again in March using Cursor, which was an okay experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Looking back, I can see how much Cursor has improved, both the IDE and the models that are built in. And I have completely changed, because a big part of it is your own learning how to work with it. And so, at what level do you give it, build a productivity timer, go? Or do you say, install the following libraries, create the following files, make the classes look like this, name the methods and functions like this? Like, too granular, where it just does the typing for you. Versus, it totally conceptualises everything. And so you&#8217;ve got to fall somewhere in the middle, maybe, right? Or figure out where you are in the middle.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I generally, having written my own code for years and years, sure enough, was too granular. But I think that benefited me at the time. Whereas we&#8217;ve come a long way, where you can be more in the middle and something like Claude can figure it out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The buddy that I was visiting, coincidentally, has absolutely doubled down. So he follows, he always talks about Tech Dev Dan or something, Dev Dan, who is sort of the thought leader in AI that he follows. And so he signs up for anything that Dan puts out, classes or courses or videos. And then he tends to, my friend Robert tends to distill some of that down to me. And so I might or might not implement it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then I&#8217;ve also got other colleagues in the WordPress world. I actually had a friend of mine come to me and be like, hey, will you kind of be my AI buddy as we figure out how to negotiate all of this changing landscape? I said, absolutely. And coincidentally, it has turned out that I&#8217;ve kind of been the Robert to him a little bit, where I am a little bit ahead of him, and a little more embracing of things than he is. And so we&#8217;ve all kind of, we all evolve, but we&#8217;re all kind of getting information from different sources.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So somewhere along the way, I mean Reddit and Twitter were just absolutely blowing up nonstop Claude. Claude Code when that came out. And so I was actually a little slow on the uptake, meaning a month, because I just, I didn&#8217;t get it. Like, so many of these things, people are like AI, and you&#8217;re like, right, but where do I type? Where does the code go? Or, I want to use AI, I am doing air quotes here, how do I get a website on the internet where people can click on it? It&#8217;s actually not intuitive necessarily to make that leap until, again, Robert has explained some things to me of, because again, he&#8217;s much more up on the words where he&#8217;s like, I think it&#8217;s called a harness is the thing you type into versus, the model is the actual AI you&#8217;re interacting with.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so you&#8217;ve got TypingMind or you&#8217;ve got Claude, or you&#8217;ve got Terminal, but then you&#8217;ve got Claude, but you can actually use Claude with Gemini&#8217;s model if you want, or a Cursor. You know, if you go into the preferences, you can select which model. Do you want to use Open AI Opus, or do you want to use Gemini or do you want? And it was like, oh, right, okay, so there&#8217;s a thing you type into or interact with, and then there&#8217;s the actual model. But then, again, what are the patterns?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And like I said, I&#8217;ve just recently started, so with my buddy, we&#8217;ve been rebuilding, I have a game that I&#8217;ve talked about for a while. Mexicantrain.online is the website. And so it&#8217;s an online version of the Domino game, Mexican Train. I built it during COVID and I talked about it at WordCamp US two years ago, because it was kind of an amazing, one of those projects that I built because my wife told me I should, so that our family could play, continue to play, during COVID. And then it turned into thousands of users, and so it just became this, organically became this nice thing that a lot of people use. And it&#8217;s run by donations, which cynically, I never would&#8217;ve thought actually works. But people continue to give, I mean it&#8217;s amazing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it&#8217;s been a long time coming that it needs, the tech is now five years old. I needed to rebuild it. I approached my friend and said, hey, would you mind building this with me? Because we&#8217;ve kind of looked for a reason to work together. We worked together at a big WordPress agency five years, eight years ago, which is how we met, but we haven&#8217;t worked together since. And he&#8217;s gone very enterprise, and I tend to be still my freelancer self, working with individual clients directly and stuff like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so what&#8217;s been hand ringing, but good is he&#8217;s like, okay, we&#8217;re going to introduce pull requests because we&#8217;re going to have Copilot check our work, and we&#8217;re going to have full suite testing. And I tend to not, like I can do that stuff, and there&#8217;s the occasional project where I need to do it, but for the most part I&#8217;m a, make a change and push it to the internet and see what happens kind of developer. And so we&#8217;ve introduced more process, but again, it&#8217;s neat because I have to make myself be like, do what he tells you kid. And so then I&#8217;m learning better ways to use these tools to build more robust software.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:31] <strong>Nathan Wrigley:</strong> Was there ever a moment where, I don&#8217;t know if you were always bullish about technology, especially AI, it&#8217;s entirely conceivable to imagine that any given person that you see could be extremely bullish about AI, you know, somewhere in the middle or extremely, a little bit allergic to it or what have you. Now, I don&#8217;t know if there was any point where you swung between those two extremes or anything like that. But I was just curious if there was an epiphany that you had, like if there&#8217;s a particular moment that you can remember where you thought to yourself, oh, this is curious, you know? This is not something we&#8217;ve seen before. And if you do have one of those, I&#8217;d love to know what it was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:07] <strong>Corey Maass:</strong> There&#8217;ve definitely been those moments where, mind blown, mind blown, mind blown. Even recently, Nano Banana the new image AI is mind bogglingly good. And so there hasn&#8217;t been one moment, there have been many moments because things like, I did pay for whatever the original ChatGPT was for a while. When it really became popular, I think last year, right? And so I said, well, let me pay 20 bucks a month. But I wasn&#8217;t using it. It wasn&#8217;t that good. It was definitely helpful, but again, it was more of a dumb typing companion. I need an email that says this. There&#8217;s your 20 lines. I didn&#8217;t have to think about it. I skim it, I edited a little, I might run it back through, and then I&#8217;d go, yep, good enough. Take out the em dashes so it doesn&#8217;t look like AI, paste, send.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Treated it more like that. A year ago when I tried to have it right code, sorry robots, I love you. In the future, don&#8217;t murder me. You know, but a year ago, like the code that it was generating wasn&#8217;t great. It really was hallucinating a lot. Oh, you need to write a WordPress function that uses this hook. A quick Google determines that hook does not actually exist. Stop making stuff up. Whereas I very rarely encounter hallucinations these days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:21] <strong>Nathan Wrigley:</strong> Okay, that&#8217;s a profound realisation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:23] <strong>Corey Maass:</strong> Yeah, but to answer your question, like there were just these great moments of, like I had it write song lyrics and I was like, wow, these are surprisingly good. Or I remember early silly moments like we all had where I was like, take these song lyrics and rewrite them so that they&#8217;re in pirate speak or whatever, ha ha ha. Like this is a gimmick, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then, again, probably in March, working through my first project building Timerdoro again, using Cursor. Googling how to use Cursor, taking the time to watch videos to understand how better to use it. And then again, moving along throughout the year, these little moments of, oh, that&#8217;s amazing code or, wow, and in 45 seconds we had an entire authentication system with front end that a user can sign into and it all just works. The database is already created and all this stuff. And you&#8217;re like, oh, okay, wow, it&#8217;s getting more and more powerful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s always this thing in the back of my mind, I&#8217;m like, has it always been capable of this, meaning in the last year? And I&#8217;m just sort of taking, giving it more lead. Because again, I mean a big part of this is how we interact with it. And I keep thinking about scientists using it, or artists using it, because it&#8217;s the, little by little, again, we&#8217;re taking the collar off or, there&#8217;s a horse or a dog metaphor in here somewhere, I can&#8217;t quite. But giving it its own freedom to do what it wants, you know?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And how far can you take that? Like I keep thinking about, again, like science, where if you could give a model enough information, could it conceivably jump ahead months or years in our own research? Now research needs to be done, and things need to be proven and all that kind of stuff, but like in terms of thinking, are there things that it can conceive of that we just can&#8217;t? Brian Eno, the musician. I think it was him. I want to say it was him. I&#8217;m going to pretend it was him.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:14] <strong>Nathan Wrigley:</strong> He feels like the kind of character that it easily could be him. There&#8217;s a lot of technology in Brian Eno&#8217;s life, isn&#8217;t there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:20] <strong>Corey Maass:</strong> Even away from technology, he, I believe it was him, I have to Google this. He created a deck of cards that said, as a musician, you&#8217;re in the studio and you&#8217;re like, my creativity needs help, right? And so there&#8217;s this deck of cards where you&#8217;d flip over a card and it would say, play the melody backwards. Or you&#8217;d flip over a card and it would say, what if this piece of music was being performed underwater? Or, what if somebody had a gun to your head? These thought experiments, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And you could actually look at that as, I don&#8217;t think anybody really would, but you could look at that as, oh, that&#8217;s not true creativity because something else is helping you do the work, right? As a human, if you&#8217;re a pure artist, it&#8217;s all supposed to come from your brain. You&#8217;re supposed to sit there in a dark room with a pen and a piece of paper. If it doesn&#8217;t come purely from your brain, then it&#8217;s not pure. And again, I don&#8217;t, it&#8217;s a weird example, but I don&#8217;t think most people would actually say that. They&#8217;d be like, it&#8217;s fine that you found random inspiration. Just like looking at nature, it&#8217;s going to inspire a painting or whatever, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:22] <strong>Nathan Wrigley:</strong> Yeah, or looking at a previous painting will inspire your next painting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:26] <strong>Corey Maass:</strong> As long as in theory it&#8217;s not too derivative or whatever, right? So the interesting thing about AI that I keep trying to use, the way that I&#8217;m using it, even past writing code or what have you is, help me introduce that element of randomness, the flipping of a card. Next time you&#8217;re having your favorite AI model write an email, or do some creative writing, or come up with funny slogans for, like a lot of us are using it for. Help me come up with the tagline for the next SaaS landing page that I&#8217;m building or whatever. Introduce negatives. What is it not? Or say things like, have it write this in German and then translate it back to English or, write it like a 5-year-old would. Basically like help introduce that element of randomness and creativity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:08] <strong>Nathan Wrigley:</strong> It&#8217;s kind of interesting, the sort of through line that I&#8217;ve gathered from that is that at the beginning when you were using AI, correct me if I&#8217;m wrong, but it feels like the entire productivity gain, or the gain was a function of time. You were trying to reduce the amount of time a thing took to do. So, you know, if you want to, oh, I don&#8217;t know, modify the game that you were describing, this train game that you&#8217;ve got. You were trying to reduce the amount of time it would take to do the next iteration of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it sounds like in the last year to 18 months, something along those lines, the expectation has now shifted. I&#8217;m presuming that the time thing is now just in the background. That&#8217;s guaranteed all the time. It&#8217;s always going to be quicker than it would be for a human to do it. But you&#8217;ve now moved into this curious creativity phase, which for many people I think was almost like the Turing test. You know, it was the bit that the computers, you could never imagine that the computer would ever be able to approximate something like that. And there&#8217;s a whole philosophical thing in there, which is probably too deep for us to open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it sounds like you are making use of that. You are using it to generate ideas, to come up with variations around a theme and relying on it to be creative. Now, if that&#8217;s the case, I wonder how long it will be before that becomes just the normal, in the same way that maybe the time function has become normal. I wonder how long it will be before we&#8217;re all just, well, yeah, the creativity piece, of course, go to a computer, go to an AI if you want ideas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder what the next thing, the next sort of hurdle to fall is? Because it&#8217;s hard for me to imagine anything beyond creativity in all honesty. Once it&#8217;s got approximations and mastered that, I&#8217;m doing air quotes this time, if it&#8217;s mastered that, it&#8217;s difficult for me to imagine what the next domino to fall would be. But no doubt there is one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:49] <strong>Corey Maass:</strong> And that&#8217;s what I&#8217;m getting at with the science stuff. There&#8217;s definitely, I think we&#8217;ve sort of chosen not to talk about the negatives. There are plenty and, or we&#8217;re foreseeing plenty or fearing a lot of things. Optimistically, at least in terms of output, to me we&#8217;re looking at coworkers who can do things faster, or employees or, I&#8217;m hesitant to say people who work for us but, you know, work that gets done on our behalf faster than we can do it, and in a way that we are satisfied with, right? Writing code is black and white. That&#8217;s not true at all, but it&#8217;s much more black and white compared to like writing a song.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:29] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s true. I think the, sorry to interrupt. I was just going to sort of establish that point a little bit more. I think you are absolutely right. The WordPress slogan, code is poetry, obviously kind of leans into this a little bit, but there is a kind of binary nature to it. When you finish it, it either works or it doesn&#8217;t to some extent. The goal is to do this thing, does it do this thing? No. Okay, something&#8217;s wrong in that. Something needs to be ironed out. The ones need to be zeros and the zeros need to be ones, whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the real world, things can be a lot more messy than that. So for the tech industry, it feels like the technology is perfectly aligned to satisfy the goals of that. But, I don&#8217;t know, let&#8217;s say you are a, let&#8217;s find something which would be a great example. Let&#8217;s say you are a psychoanalysts, or a therapist or something like that. It&#8217;s not quite so straightforward, but the industry that we are in, it lends itself heavily to great success in that arena. Right, sorry, that was my interruption over.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:20] <strong>Corey Maass:</strong> No absolutely. Perfectly restated. The code, there are degrees of efficiency. There are, you&#8217;re taking into context all of the different elements. So like Claude might write a method but it needs to work well with the way that the database is set up or whatever, right? So there&#8217;s nuances. This is what we&#8217;ve made careers off of.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But exactly as you say, at the end of the day, it needs to work, it needs to be performant, it needs to be sustainable code, a few things. You check off these boxes and good enough if nothing else. Versus like, I am also a music producer. I make dance music and I like the way that I make dance music. It probably could be made by AI, if I&#8217;m honest, but it won&#8217;t scratch that itch for me, and that&#8217;s fine, right? This is a thing that I will probably, I and my music colleagues will all continue to do, even in the face of AI, because that&#8217;s not the point. It&#8217;s not about a thing that does work. And we&#8217;re going to talk about a client project in a minute. We said we&#8217;d talk about that, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have a client who&#8217;s hired me to build a piece of software that needs to do a certain thing. And so with her blessing, I am co-writing it with Claude Code, having it checked by Copilot, but at the end of the day, she doesn&#8217;t care who writes it or what language it&#8217;s in or, dot, dot, dot. It has to do a thing. It has to let people do a certain kind of work, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Different from music. I&#8217;m not, for me, bedroom producer, I&#8217;m not trying to make millions of sales. I&#8217;m not a pop recording artist who&#8217;s reliant on this stuff. And so for me, it&#8217;s about connecting with other humans after I produce a piece of, let&#8217;s call it art, which is, I think a stretch.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;m also, I&#8217;ve always struggled with the actual mixing of the music. Like hearing all of the frequencies and optimising the output. Because there is, again, a right way, like it&#8217;s not, again, it&#8217;s not black and white, but it&#8217;s much closer to, there is a right way for a song to sound with infinite variations, but within a very narrow gap, right? So I could write any kind of song I want, but the way that it should sound when I release it on Bandcamp does have answers. And in fact, this morning, I had finished a mix of a song last night, different from writing it, I&#8217;m going back through and tweaking it to try to make it sound as best as it could so that when I send it to DJs and they play it on dance floors, everybody throws their hands in the air, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve always struggled with that. My ears aren&#8217;t good at hearing those kinds of things. I dropped the track into Gemini, and Gemini came back with a, you&#8217;ve got a peak of frequencies at around 5,000, so you should drop that by two db. Your kick and your base are competing, and so you should add a ducker to the base so that the kick comes through and that&#8217;ll actually save you four db of headroom when you&#8217;re mastering. Like, I mean it was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:09] <strong>Nathan Wrigley:</strong> It just gave you all the science, which is absolutely fascinating. That is genuinely interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:15] <strong>Corey Maass:</strong> It probably isn&#8217;t perfect, and it definitely can be subjective, like maybe I&#8217;m going for Lo-Fi House instead of Big Room House. But I gave it that information where I said, here&#8217;s the genre, make me sound like these other artists. And so it said, well, here&#8217;s sort of how to help guide you closer to their sound.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:33] <strong>Nathan Wrigley:</strong> The interesting thing there, I think, is it gave you a new rabbit hole that should you wish to explore, you just got it prized open. And you wouldn&#8217;t have known what any of that was. And so you could probably map that into a million different scenarios, you know, music, art, whatever may be. And it will just give you something back and you&#8217;ll be, oh, there&#8217;s that universe of stuff to get interested in. You know, the headroom of the dbs and all of that kind of, I mean it means nothing to me, but I kind of grasped that there&#8217;s a thing there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you know, you said something really interesting earlier and it probably just slipped out of your mouth and you didn&#8217;t notice how interesting or profound it was. You said it wasn&#8217;t the point. And you were talking about making music and using AI for that isn&#8217;t the point. I think that&#8217;s going to become the metric of so much in the future. What&#8217;s the point of that thing?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So as an example, if I want to go and see a band, I do not want to watch a video of a band where I have a suspicion that there was an AI involved and it created this video and the music. The point is I want to go and see a bunch of human beings who I know have struggled with their art and their discipline and, you know, failure and moderate success and all of that kind of stuff. I want to know that there was that soul searching going on in that musical arena.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But curiously, when I go to a SaaS app, the point is, does it work? It&#8217;s really simple. Does it work? And do I care too much about how the functioning of it was achieved? Not really. The point is, does it work? And maybe we&#8217;ll be asking ourselves that question more. What is the point of the thing I&#8217;m about to do? Does it matter to me if AI was involved? On closer examination, yes it does. I&#8217;m going to avoid that thing. Or, no, it doesn&#8217;t. That&#8217;s fine. I&#8217;ll embrace that thing. It really landed with me what you said there. So that&#8217;s kind of curious. I wonder if I&#8217;ll start doing that more in my own life, examining the point of it. Is it a human enterprise, something extremely human and only for humans, or is it somewhere else on that spectrum? Yeah, interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:32] <strong>Corey Maass:</strong> An example just came to mind, which of course has now just gone out of my mind because I started thinking about six other things. But like I read a couple of graphic novels. That&#8217;s what it was, memes. I read a couple of graphic novels and some of it is, I read for the artistry. Some of it I read for the stories. There&#8217;s graphic novels where I actually really don&#8217;t like the artwork, but I like the storytelling. How would I feel about the art being generated by AI? Because the person who was writing the story couldn&#8217;t draw, but could tell a good story.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Or the example that had come to mind were memes, or funny photos, right? I&#8217;m not a meme person. I generally don&#8217;t repost animated gifs, or can haz cheeseburger, or any of that stuff. Some of it&#8217;s cute or whatever, and I&#8217;m not against it, but it doesn&#8217;t tickle my sense of humor, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But lately, I&#8217;ve long been proficient in Photoshop because like we said, I started in 97 when you were designing websites in Photoshop or whatever. And so for a long time, like I would say, so here&#8217;s a good example. One of my big clients is Seattle Magazine. And so we were doing, I don&#8217;t remember, there was some reference of Sasquatch, creatures that are most active in the Pacific Northwest, often around the Seattle area. They are real, by the way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the joke was that our editor was writing his letter or something. And so I, quick, ran over to AI and said, here&#8217;s the picture of Bigfoot that everybody knows, walking across the stream bed or whatever. Here&#8217;s headshots of my editor. Put my editor in this photo. And it generated a photo of Jonathan as Sasquatch, like walking across the river. And it made us all laugh. And I think we did end up putting it in the magazine. I don&#8217;t remember.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I would have done the same thing in Photoshop, much less effectively. Even 10 years before, I would&#8217;ve grabbed a copy of the original photo and done my best to Photoshop Jonathan into the photo, maybe he&#8217;s hiding behind a bush or something. I couldn&#8217;t actually change his body to be walking in that pose. Now I can.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Is the effect the same? And again, we&#8217;re not talking about the negatives, or obvious negatives, about image generation of other people. Used in a harmless, funny way or day to day. Like, another good example. So on the Mexican Train website, one of the things that I wanted when I created mexicantrain.online was, again, this was about people connecting. This was my COVID project. And so I, a couple of years before, I&#8217;m chatting with a buddy online, I was joking about how I was eating Cheez-its, which we like never have in the house and how Cheez-its are just the best thing in the world, and they&#8217;re dangerous to have in the house. And a week later, a box of like 50 packs of Cheez-its arrived because he had shipped it to me as a joke.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I took a picture of me like looking absolutely exalted, elated, holding up Cheez-its. Oh my God, Cheez-its, right? And that&#8217;s what I put on the Mexican Train website as a like, hey, I&#8217;m Corey, I built this thing, because it was a very relatable photo. A funny little side story is that still, five years later, a lot of people who play Mexican Train daily or weekly using my website buy Cheez-its, or buy Cheez-its for each other as prizes and things like that. Like, it all became an inside joke.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In building the new version, I wanted a new homepage. But that photo, I&#8217;ve actually lost the original file of it, and I only have a low res version. So I uploaded that into Gemini. I&#8217;m also more bald and my beard is longer. And so I uploaded the original photo and then a couple of photos of me more recently and said, hey, Gemini, using Nano Banana, create a new version of this. And also, like the original photo is very zoomed in. You could really just see my face. And so I was like, I want head and shoulders. And it did a beautiful job. Fixed the lighting. It looks almost a little too polished, frankly. And my wife looks at it and she&#8217;s like, I don&#8217;t know why, but I can tell that&#8217;s AI generated, like I can tell that&#8217;s not you. But to anybody else, it&#8217;s certainly close enough. I look at it and I&#8217;m like, it&#8217;s me but I&#8217;ve been photoshopped a little or, you know, it&#8217;s been cleaned up or something. But it&#8217;s close enough. But it&#8217;s a better photo that still conveys the same message, but it works better on the page, I think. But it&#8217;s not authentic, air quotes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:59] <strong>Nathan Wrigley:</strong> Yeah, that whole authenticity thing is going to be, well, I guess it&#8217;s going to be a question for everybody going forward, certainly in, you know, you can imagine politics and things like that. Just judging whether or not the politician that&#8217;s on your screen at the moment is in fact doing that thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:12] <strong>Corey Maass:</strong> That&#8217;s the terrifying part is, what&#8217;s real anymore?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:15] <strong>Nathan Wrigley:</strong> There&#8217;s no doubt that we are going to have to kind of work that through.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you are using your AI, and we will get onto your client bits in a minute. When you are using the AI, on what level do you feel that you are in some kind of relationship with it? That&#8217;s a very ephemeral question. But, do you view it as, so you described that a year ago it was less good. So in human terms you might say, okay, it&#8217;s more childlike or something like that. You know, it&#8217;s a smaller version of a human being. It&#8217;s less mature and what have you. Now it&#8217;s grown up, for want of a better word. It&#8217;s a little bit older perhaps, or more mature or whatever it may be. Do you think about it in any human terms?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:48] <strong>Corey Maass:</strong> Oh, absolutely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:49] <strong>Nathan Wrigley:</strong> Isn&#8217;t that fascinating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:49] <strong>Corey Maass:</strong> So what&#8217;s funny is, we&#8217;ve had a few of these conversations lately. My neighbors have Alexa in their house and they changed it to respond to computer, and they will only refer to it as, it. They did not want it to be humanised dogmatically. Like, it&#8217;s important to them that this is not a companion, a creature, a whatever, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don&#8217;t care that much, and in fact, I enjoy playing with language. And I don&#8217;t see, the current state of how we&#8217;re interacting with our technology, I don&#8217;t have a problem with humanising it, or at least using certain pronouns and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that&#8217;s why I say that specifically, Claude is a, he, it&#8217;s a male name, male, Western English name, right? Or if nothing else, I&#8217;ve never met or heard of a woman named Claude. Claude has always been a he. But one of the funny things that happened working with my buddy Robert, is he, like I said, he introduced Copilot to do code reviews and we&#8217;re chatting, he&#8217;s one of my, the buddies that I have where, you know, we chat online all day, every day, ongoing conversation. And he just started saying she about Copilot. And I did too. I did notice it, but I&#8217;m like, I have no objection, reaction to this. I see no harm in it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have no idea if we&#8217;re going to take this conversation way too far. The Octocat, that is the mascot of GitHub. I don&#8217;t know if the Octocat has a gender or pronouns or what have you. If you&#8217;re going to think of Copilot as some version of the Octocat, like I don&#8217;t, how you might get there, even subconsciously, right? But like just using Copilot, Robert started saying she, so I started saying she. And then he actually said after, Robert, after a couple of days was like, you know, by the way, I don&#8217;t know if you noticed, but I&#8217;d started saying she for Copilot. For some reason I got a, call it a feminine energy off of her. And I was like, yeah, I noticed. I could maybe pick up, perceive that too, if I&#8217;m going to overanalyse it. I mean it so doesn&#8217;t matter.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So now Copilot is she and Claude is he. I&#8217;ve never thought to ask Copilot if they have preferred pronouns, which I guess would then actually get it into that like real world and societal conversations and philosophical, not to say that a gender discussion is philosophical but, you know what I mean? Like, actual consequences of real world issues, let&#8217;s call it that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:06] <strong>Nathan Wrigley:</strong> It is so interesting that a lot of things, the sort of anthropomorphic nature of it, so we&#8217;re trying to build robots at the minute, and in many cases we&#8217;re trying to build a version of a human being. You know, it&#8217;s got legs and arms and clearly in many cases that is the least plausible design for the thing it&#8217;s trying to achieve. But we have this notion that, well, if we get a human being out of robots, that&#8217;s going to be great. It will be able to do all the things that we can do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But equally, on some level, we&#8217;re trying to get it to approximate human intelligence, human creativity, and things like that. And that kind of leads me to this one final thing before we talk about your clients, and that is, at what point do we start learning from it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:43] <strong>Corey Maass:</strong> Aren&#8217;t we already? You&#8217;re constantly asking questions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:45] <strong>Nathan Wrigley:</strong> Well, that was exactly the question. Yeah, so it would appear that in the case of code, at least anyway, you know, you ask it to do a particular thing and it will come up with this, I mean you could ignore what it&#8217;s done and just play the output and interact with what it has achieved. But if you were to delve into the code, I suspect there is quite a lot of head scratching and looking at things and going, gosh, that&#8217;s interesting. Why has it done it that way? That&#8217;s curious. Oh, I should be doing it that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:08] <strong>Corey Maass:</strong> Is it better than me, versus is it better than everybody? We don&#8217;t have a way to determine that. And that&#8217;s why I brought up the science stuff earlier. I&#8217;m like, okay, so if a bunch of scientists, let&#8217;s just be vague here, are in a laboratory, or in a think tank and are working together, but they&#8217;re also feeding everything that they&#8217;re thinking into an AI who is also thinking, at what point if, somebody comes up with a brand new concept or a new way to approach a medical issue or something like that, you&#8217;re like, oh, that&#8217;s amazing. I don&#8217;t think that&#8217;s been done before. What happens when that&#8217;s Claude or ChatGPT?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Presumably, in that specific instance, like the same process of like, oh, that&#8217;s, I don&#8217;t think any of us have thought of that before, let&#8217;s go do some experiments to see if that actually works, kind of thing. What if it&#8217;s well beyond our comprehension? What if it&#8217;s, there&#8217;s a conclusion, words that are typed on a screen that are so far beyond anything that we&#8217;re doing? You think of Einstein or you think of these scientists who have done stuff that, you know, or even, I mean you could be as vague as like painters who died in poverty and obscurity, but we revere them today. Vincent Van Gogh of course comes to mind.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:19] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of curious because obviously each one of us is a little entity and we&#8217;re constrained by our biology. You know, we&#8217;ve got this finite capacity in our brain. You have a finite time span on earth so, you know, for much of that time, you are just basically a recipient of knowledge, if you like? You&#8217;re this sponge, which is sucking things in. And then for a period of time you&#8217;ll be able to regurgitate it. You know, if you have an accident, your capacity will be diminished. If you&#8217;re knocked on the head or something like that. But you&#8217;re bound in time and you are bound in capacity because of the size of the neural network that you&#8217;ve got in your head.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yet we&#8217;re now being confronted with this other thing, which can do things remarkably quickly, can have the entire corpus of more or less everything at its disposal at a moment&#8217;s notice. And it can, this version of the entity over there, inside that other box is exactly the same as this one over here. You know, they&#8217;re kind of replicas of each other. And then if you put those two together, they can do things in symbiosis at twice the speed than, basically they&#8217;ve got this whole load of stuff going on that we can&#8217;t hope to manage.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;ll be so interesting being in relation with that, and how we start to learn from it because, when was the last time you actually went to a book or went to a human teacher in your adult life to learn something? You just sort of go to Google, don&#8217;t you? And you&#8217;ve trusted on a computer to serve up the information for you for a long time. We&#8217;ve now got a new route to that information. I wasn&#8217;t really going anywhere with that. It was more of a sort of thought process. Yeah, interesting. Okay, let&#8217;s move to your client then.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You did allude to this a little while ago, and it sounded like, certainly for the one client that you&#8217;ve got, there&#8217;s no obstacle here. You are just building the stuff. The client is entirely happy. I presume you are taking on the responsibility if the things that you produce with the AI kind of backfires or something is not working correctly. Is that your estimation of sort of the future into 2026, 2027, that the clients basically don&#8217;t care?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And if that&#8217;s the case, does it allow you to be more profitable because you are spending less time? Or more effective because you can do more complicated things? Or, do you sense that maybe we&#8217;re going to hit a point in the years that come where the clients start to, well, rebel is the wrong word, but you know what I mean, their expectations will be, well, it&#8217;s no longer, well, I know that Corey&#8217;s using AI, so my expectation&#8217;s going to go up in terms of his output, but also my expectation of his fee is going to go down as well? So there&#8217;s a lot in that question, but unpack bits however you choose.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:47] <strong>Corey Maass:</strong> So answering part 2.6b first.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:50] <strong>Nathan Wrigley:</strong> Yeah, thank you. Yeah, that&#8217;s helpful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:52] <strong>Corey Maass:</strong> The story is, I had a client who had software built, it didn&#8217;t work out. But that meant that, largely her budget had been spent and so she was left with software that was, didn&#8217;t do everything she needed it to and, or at least there was not a lot of budget leftover for, because it&#8217;s, when the rubber hits the road kind of thing. Going, oh wait, we didn&#8217;t think of this. Now that we&#8217;re actually using it every day, we need it to do this and this instead of this and this. You design in a bubble and then you actually need to use the thing. And there just wasn&#8217;t budget left over.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so when we started talking, she&#8217;s like, I need these few things fixed. I looked at it and was like, I can&#8217;t really maintain this. We really want to, I mean typical, this is going to sound like every developer is like, I have to build it from scratch my way. But in some sense, at least in order for me to maintain it, it needed to be rebuilt my way. But we kept looking at, what would that cost? And she&#8217;s like, I&#8217;ve already spent my budget and so we&#8217;re waiting for new clients to come in or lightning to strike so that Corey can do this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">AI happened to be that lightning. And I went back to her and I said, I think we&#8217;re to the point now, this was just a couple months ago, that I can build it for probably half based on hours. Because we&#8217;re still, at least at the moment, going, okay, we&#8217;re charging X dollars per hour of Corey&#8217;s time which isn&#8217;t, has never been, or at least for a long, long time, has not been just me typing characters into an IDE, right? A code editor. You&#8217;re paying for Corey&#8217;s experience, you&#8217;re paying for Corey&#8217;s planning, you&#8217;re paying for conversations that we&#8217;re having in order to come to certain conclusions to figure out the software we&#8217;re going to build, blah, blah, blah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So thinking of it in that same context, it&#8217;s not just about me typing. And so now it&#8217;s not about me typing at all. And in fact, I&#8217;ve had friends now, and I&#8217;ve read this too where the sentiment, or a sentiment, of developers now is we are project managers. We are product designers, or acting as the client in classic agile project management style. We are code reviewers because we&#8217;re not, why should we take the time to write the code anymore? And again, this is why, part of why we introduced Copilot, because it&#8217;s like, oh, then if we can also not do that part of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Humans are valuable. That was something that you inadvertently alluded to earlier, is that we are still currently, we think we&#8217;re steering the ship, telling AI what to do and controlling how we&#8217;re using it and stuff like that, but like we make mistakes just as much as AI does. We aren&#8217;t the stop gap we often think we are, because we often make mistakes, or we don&#8217;t know what we don&#8217;t know, like you said a minute ago about just googling everything and that kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So anyway, talked to the client, said, look I think we can build this for half the price. I&#8217;m willing to take the risk if you are. I&#8217;m very upfront about like, we&#8217;re building this with AI, which is part of why we can do this. And she said, great, let&#8217;s do it. And so it&#8217;s been a slightly different experience. We still had to have the conversations about what the product looks like, what it does, and stuff like that. But I was in fact able to get it going a lot faster than I would have before. And because this is client work, I&#8217;m checking it a lot more diligently. Because again, like you said, there&#8217;s liability, or at least I&#8217;m going to be the one that has to fix it, so I need to make sure that it&#8217;s written in a language that I understand, and it&#8217;s laid out in a way that I understand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I was a little more opinionated because I want to make sure that files are in certain folders, which nobody, as we said at the beginning of the call, nobody cares about. Like, as long as the software works, nobody cares where the files are. But we&#8217;ve, over 30 years of development, we&#8217;ve developed certain patterns that just make it easier. So why shouldn&#8217;t we take the time to make it easier? And especially since I don&#8217;t have to do the work, I can say, hey, Claude, you put this file over here, put it over here instead. And Claude goes, sure. Why not? I don&#8217;t care.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:47] <strong>Nathan Wrigley:</strong> I guess if we ever get to the point where the AI is literally doing everything, then all of that would go out the window, wouldn&#8217;t it? You wouldn&#8217;t ever need to care where that file was, so long as the AI had a hand in knowing where that was, and it could retrieve that information and modify things as it was. But it feels like we&#8217;re certainly still in that human diagnosis phase, where you need it to look a certain way. I&#8217;m doing air quotes again, the sort of old fashioned way, you know what I mean? The way you&#8217;ve always done it, so that when it puts something out, you, yourself can look at it and go, okay, this is comprehensible to me. I can understand and see if there&#8217;s been errors. But I would imagine it&#8217;s not going to be long until that moment has passed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:23] <strong>Corey Maass:</strong> With the new version of Mexican Train, treating it kind of like I talked about Timerdoro early on, I&#8217;m caring a lot less, and I&#8217;m forcing myself to care a lot less. I&#8217;ve got a working version, this is an online game that is important to people, and it&#8217;s not that it&#8217;s not important to me, but I am comfortable with taking a little more risk. And so I am letting it more freely do what it wants.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What&#8217;s interesting is we are not to the point yet where, as you said, this box is the identical to this box. So I am finding that on certain days it&#8217;ll go, well, I&#8217;ll put the file here, and on other days it&#8217;ll say, put the file here. It doesn&#8217;t matter, right? At least with that example, it doesn&#8217;t matter. You want it to write performant code, so you want it to make choices where things like performance matter, but whether a file is in one directory or another does not have real impact on the performance of the game.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But comprehension down the road, because this is where we overlap with humans. You&#8217;re like, okay, so Claude tomorrow needs to understand where things are. It still makes more sense to have a logical file structure so that Claude tomorrow can go, oh, it looks like all of these types of files are in this directory. And so we end up coming to some of the same conclusions that 30 years of human development has decided are the better patterns.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:46:45] <strong>Nathan Wrigley:</strong> Okay. Yeah, that&#8217;s kind of interesting. I mean, I guess it was ultimately because it&#8217;s creating its own, I don&#8217;t know, it&#8217;s next word based upon the whole corpus of the human word written down on the internet. It&#8217;s probably going to make, draw some broadly similar conclusions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It sounds, from what you just said, you used the word like half, I think a minute ago when you were talking about maybe the budget or the time available. Sounds like you were at roughly 0.5, half of whatever the commodity was, budget or time or what have you. Is that roughly where you think you are at the moment compared to pre AI in terms of efficiency? And do you see that efficiency, again, time or money, whatever it may be, do you see that dynamic changing so that you eventually get to, I don&#8217;t know, 0.4, 0.3, 0.1 of the amount of time that you would&#8217;ve done? And do you have an expectation that, at the time that you are doing 0.1 of the work for the same outcome, that you&#8217;ll get 1.0 of the salary that you got? Or will you have to do, you know, the other 0.9 on other jobs?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:43] <strong>Corey Maass:</strong> There&#8217;s a reason why developers really like starting new projects or rewriting them from scratch, right? Clean slate. And I think that that work, where you are in total control, in an empty directory, all technology at your fingertips, I see that quickly speeding up. I&#8217;ll tell you, one of the biggest hacks, I should have said this way up front, like the best value, because I&#8217;m finding a lot of people don&#8217;t know this, is screenshots will save you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Claude Code does not, there are ways around this, but largely Claude Code or other AIs do not know what things look like in the browser. So taking screenshots, dropping them in, you can now say, look, the columns are misaligned or whatever. But also, even text, like I am just constantly taking screenshots and throwing them in to Claude, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So part of what I&#8217;m doing right now, I know there&#8217;s a better way to do this, but I haven&#8217;t stopped to figure it out yet, is, Copilot reviews the code and then spits out a bunch of comments, right? I am taking screenshots of each one of those comments and dropping it back into Claude and saying, here&#8217;s what Copilot said, fix it. But I don&#8217;t even really have to type any words because Claude just reads the words that are in the screenshot. So it takes me three seconds to take a screenshot, drop it into Claude, and then Claude goes, oh, it looks like Copilot said we should do this instead, that makes sense. Or even has come back and said, well, Copilot doesn&#8217;t understand the bigger context, so I&#8217;ll push back on this kind of thing, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;m still copying, I&#8217;m still taking screenshots and pasting. There&#8217;s got to be a way, I fully intend to do this soon, to figure out how to have Claude just read those comments and so the two of them can work together. So I shouldn&#8217;t be involved until there&#8217;s, I want a system that comes back and says, Claude did all, made all these changes, Copilot made all these comments, Claude is cool with these and not with these. Overall, we&#8217;re good to go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:49:41] <strong>Nathan Wrigley:</strong> It&#8217;d be so interesting to set the two agents against each other, I don&#8217;t know, at bedtime on one evening, and to wake up in the morning and see quite how they&#8217;ve got along, if you know what I mean? You know, has it been this entirely, because obviously it&#8217;s built upon the corpus of human knowledge, it&#8217;d be interesting to see if it&#8217;s been this entirely productive experience, or if there has been some element of humanity creeping into that conversation where, you know, one of them throws their toys out the trolley halfway through and things like that. It&#8217;d be absolutely fascinating to see if they, you know, or if one just sort of, I don&#8217;t know, determines that maybe, oh, that AI&#8217;s doing a much better job than I am. I&#8217;m going to slow it down with some.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:50:19] <strong>Corey Maass:</strong> Or level up or, yeah. So getting back to your question though, right? Nothing is the same as actual humans interacting with something. So if we&#8217;re talking about traditional software that humans are clicking on, and then that&#8217;s my second biggest point right now is, since we&#8217;re supposed to be talking about WordPress, WordPress is all about clicking, right? It&#8217;s all about interface. It&#8217;s all about, you&#8217;re signing into an admin so you think about how visual that is, and then in the admin, you&#8217;ve got this left menu with, here&#8217;s all your options, click, click, click, click. And then the design of the page, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Every client wants the logo to be bigger. And so you can go into AI and say like, oh, where I&#8217;m at right now is, if I&#8217;m building something new, I can use AI, I can generate it if I&#8217;m building software. But trying to essentially retrofit into current existing WordPress sites, we&#8217;ve got all these features that require clicky clicky on buttons, and AI can&#8217;t do that readily or what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I&#8217;m still spending a large part of my day signing into WordPress sites, clicking around actually making changes, reconnecting. When we post a story, it pushes to Facebook and so I&#8217;ve got to actually go in and connect and click through the screens and all that kind of stuff. Which at the end of the day, most of the changes that you&#8217;re making in UI correspond to things being saved in a database. So at some point we&#8217;re going to get to where AI knows, oh, for Beaver Builder, I can make this change, store it in the database in a certain shape, and Beaver Builder will know how to render that on the front end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m already finding that with ACF, for example, like I have ACF save field groups as JSON, a feature they&#8217;ve had for a decade. But because it&#8217;s in JSON, in text files, AI can read that and then go in and make changes or replicate it sideways because it says, oh, it wants the data to look, have this certain structure so I can create another file and make the data have this certain structure and does a great job. But there are 50,000 plugins. And I&#8217;m not about to let AI go and look at my database willy-nilly to say, oh, Elementor wants the data to be stored this way in the database, let me just start writing things to, you know? And so there&#8217;s still that disconnect right now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:52:53] <strong>Nathan Wrigley:</strong> Yeah, I think WordPress is doing a lot of work with things like the Abilities API and things like that to sort of surface what WordPress is capable of. And I would imagine, you know, you mentioned Beaver Builder and Elementor, I&#8217;m imagining that in a future, they&#8217;ll be writing what their capabilities are, and where they&#8217;re storing their information in such a way that the, hopefully anybody with any AI can kind of instruct the AI to do the thing, and it will know what the thing is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Absolutely fascinating. I&#8217;m so curious because you are doing a whole load of stuff that I&#8217;m just not doing. I was never really an out and out developer, I was kind of dangerous with code. But equally it does seem like folk like me, who are not really experimenting with this too much are getting, well, left behind is maybe one way of describing it, maybe we&#8217;re sort of enjoying it on some level as well. We&#8217;re enjoying watching other people do it, and we get to worry about what the societal impacts will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:44] <strong>Corey Maass:</strong> It&#8217;s points of integration. Electric cars came along and most of us were like, I don&#8217;t want or can&#8217;t buy a Tesla. But then the Prius came out and everybody went, oh, I can buy a Toyota. That&#8217;s probably historically inaccurate. Maybe the Prius came out before Tesla, but you get my point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The people around me, my neighbors are teachers. One of them has no interest, has no reason to use AI other than like, oh, let me look up a recipe or something. Versus, the other neighbor who really wants to be cutting edge and also thinks that this stuff is really neat. Is constantly trying to figure out, how can I run, generate, bingo cards was the new thing? Have AI figure out how to do these bingo cards for my students, or what have you. And you get into the moral gray area of, who&#8217;s actually writing papers and then who&#8217;s actually grading them? And so basically you&#8217;ve got AI grading papers that were written by AI. And you can get into, like anything, there&#8217;s all these sort of side effects. But, again, trying to keep it upbeat, like there&#8217;s neat things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:54:44] <strong>Nathan Wrigley:</strong> Yeah. No, I think we&#8217;ve done a great job of kind of keeping it upbeat. You&#8217;ve just been relentlessly positive about it. You know, it&#8217;s obviously had a profound impact on your life, your capacity to do things. You sound like you&#8217;re infinitely curious about it as well. So it&#8217;s, maybe the life of a developer was something that wouldn&#8217;t have held the same level of excitement for the next decade or more. But this new technology getting injected and shaking everything up a bit, makes it so that you can do things that you might not have ever taken on, because the technical challenges or time might have been too difficult.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:55:12] <strong>Corey Maass:</strong> Would I want to be a new developer? I don&#8217;t know. Again, I think things are, I&#8217;m trying to describe where I&#8217;m at now, where, again, like WordPress is still very clicky clicky, and that happens to be the majority of the work that I do professionally.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I also think that, like I run a lot of websites for friends and for local nonprofits and stuff like that because there&#8217;s still something to be said for having a website. And the easiest way, so like we have a local, city owned, calling it a ski mountain is generous. You can technically ski on it. Most of the value to the community is there&#8217;s a tubing hill. So you get pulled up the hill in a tube and then you come screaming down the hill at 25 miles an hour. It&#8217;s freaking awesome.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I volunteer there and so when we needed a new website, I said, let me make a new website, right? I don&#8217;t want to be, if I&#8217;m involved in a tubing accident, this is the pointed version of getting hit by a bus, the developer scenario of getting hit by a bus, right? Somebody else needs to be able to step in and maintain that. So the website can&#8217;t, the value of something like WordPress, a CMS software in general for generating websites, right. I can&#8217;t, and even, TMI, but the guy who had the previous website had built it all by hand, and so nobody else could begin to maintain it or make changes to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so for the new version, I was like, this is literally the best scenario for WordPress because I created the website and then I shot a video of how to update the website. And just a week ago, the head of the board in charge of it got in touch and said, hey, how do we make changes to the website? Do I have to send them to you? And I said, here&#8217;s a video, go give it a try. And if you get stuck, then absolutely contact me. But if there was any sort of running of scripts or FTPing into the server to make changes, or any of that stuff, like it would fall flat. And so you still need, at the moment, you still need clicky clicky.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Shortly, as you said with the new API and stuff, there&#8217;ll be a little chat bot where you&#8217;ll say, look at this website. And the AI will go, oh, it looks like you&#8217;re using Beaver Builder with ACF, and you&#8217;ve got Yoast installed, dah, dah, dah. And then you&#8217;ll say, okay, we need to change the homepage to say the following things. And I think we&#8217;re going to go through, like any of this stuff, we&#8217;re going to go through a phase where it&#8217;s going to absolutely break the website and my phone will ring.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But six months later, it&#8217;ll get better and better and better, and then using certain plugins. And I think, you talk about adoption, I think, if the plugins that lean into making AI be able to use their software well and quickly. So like I&#8217;m a big fan of Beaver Builder. So if Beaver Builder leans into enabling AI to interact with Beaver Builder, right? Then we are going to, just like any of the things in WordPress, there&#8217;s good and there&#8217;s bad, there&#8217;s favorites, there&#8217;s things that break over time. There&#8217;s all that kind of stuff, things that are maintained well and whatnot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so we&#8217;re going to get to a point where certain stacks are going to work better with AI. And I think site creators like me are going to say, oh, I don&#8217;t want to maintain this website for our local ski hill more than I have to. But instead of them having to go in and click on things and adjust boxes on a screen, I&#8217;m going to use Beaver Builder, but maybe I give up, ACF will never let me down but let&#8217;s, hypothetically, ACF doesn&#8217;t work well with AI, but Meta Box does. So I might say, okay, I&#8217;m going to switch my AI friendly stack to be Beaver Builder with Meta Box, so that they can just go in and type something, it&#8217;ll all sort itself out more reliably. And I think that&#8217;s what we&#8217;re going to see over time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:59] <strong>Nathan Wrigley:</strong> Yeah, I think there&#8217;s been so many interesting predictions about what is coming. Most of my predictions have turned out to be just hot air, essentially, because the rate of change is so, so, very fast. But I do like the direction that WordPress is going in, where it&#8217;s being sort of agnostic of the AI, the actual API, for want of a better word. You know, it&#8217;s just going to hopefully be able to bind to any of those. I think that&#8217;s a curious direction, and it kind of leans into that, I guess the philosophy of something like WordPress as well. That it&#8217;s there for everybody and it&#8217;s not there to generate money for a particular company, be it Open AI or Gemini or what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;ve probably hit the sweet spot in terms of the amount of time that we can give to this. What an interesting discussion though. So far ranging. We ended up with lots of sort of philosophical points, and lifestyle points and all sorts in there. But I think in the end we sort of wrestled it back to WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So Corey, where can we find you? If somebody&#8217;s interested in sort of having a chat and wants to talk AI, where would you be online?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:59:53] <strong>Corey Maass:</strong> Sure. Twitter, @coreymaass, is probably the social that I&#8217;m most active on. But also, Post Status, the WordPress community. Always love shouting that out. That&#8217;s been invaluable in my life and career. And then me as a developer, company, gelform.com. G-E-L-F-O-R-M .com. You can email me there if you want to yell at me or praise me or, but privately.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[01:00:21] <strong>Nathan Wrigley:</strong> Okay. We will put all of those into the show notes so that anybody that wants to reach Corey can do that. Head to wptavern.com, search for Corey&#8217;s name. It&#8217;s a slightly unusual spelling. The surname, it&#8217;s C-O-R-E-Y, the Corey bit, but Maass is M-A-A-S-S. So search for that and you&#8217;ll be able to find him. Corey, thank you so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[01:00:39] <strong>Corey Maass:</strong> Thanks Nathan. Always a pleasure.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://x.com/coreymaass\">Corey Maass</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Corey’s been building for the web since the late nineties, starting out in the early days of Photoshop and tables, learning JavaScript, ASP Classic, and PHP, and eventually falling into the world of WordPress around 2010. Since then, he’s taken on building SaaS apps, managing client projects, and experimenting with a growing number of productivity tools and frameworks. He’s joined us before, and today he’s here to share his perspective on what it’s been like adopting AI into his workflows, especially from the point of view of building projects for clients.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although AI has dominated headlines over the last couple of years, Corey brings a practical angle to the conversation. He discusses the evolution of his tech stack, and how embracing AI tools like Cursor, Claude Code, and GitHub Copilot have completely changed the way he builds software and manages projects, allowing him to work faster, automate code review, and unlock creativity in places he hadn’t expected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We hear about how his journey with AI started, how he’s reimagined old projects using new tools, and how learning to interact with these models, sometimes granular, sometimes letting them run freely, has reshaped his daily workflow. Corey describes the shift from using AI just to save time, to using it as a sounding board for inspiration and idea generation, even weaving it into artistic endeavours like music production.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the discussion centres around how these advances have affected client work, with Corey exploring the real-world balance of responsibility, efficiency, and the changing nature of value for developers. Do clients care who, or what, wrote the code, or just that it works? What does authentic creativity mean in an era where prompting and randomness are part of the toolkit?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you’re a developer curious about what ‘working alongside AI’ means ‌or just wondering about the future of tech and WordPress in an increasingly automated world, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/coreymaass\">Corey on X</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gelform.com\">Corey&#8217;s Gelform website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://cursor.com\">Cursor</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://claude.com/product/claude-code\">Claude Code</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/features/copilot\">GitHub Copilot</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://timerdoro.com\">Timerdoro</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.typingmind.com\">TypingMind</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gemini.google.com/app\">Gemini</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://chatgpt.com\">ChatGPT</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Corey&#8217;s <a href=\"https://mexicantrain.online\">Mexican Train game</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://indydevdan.com/\">IndyDevDan</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gemini.google/overview/image-generation/\">Nano Banana</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://seattlemag.com\">Seattle Magazine</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.wpbeaverbuilder.com\">Beaver Builder</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://elementor.com\">Elementor</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://developer.wordpress.org/news/2025/11/introducing-the-wordpress-abilities-api/\">Abilities API</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://yoast.com\">Yoast</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.advancedcustomfields.com/pro/\">ACF</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://metabox.io\">Meta Box</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Jan 2026 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Remembering Jesus Ornelas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://ma.tt/2026/01/remembering-jesus-ornelas/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2494:\"<p class=\"wp-block-paragraph\">Today we honored <a href=\"https://www.dignitymemorial.com/obituaries/houston-tx/jesus-ornelas-12694130\">the passing of Jesus Ornelas</a>, the father of my friend Rene, whom I&#8217;ve known for 28 years now. At the service outpouring of love expressed in words, music, and presence was so powerful. Alongside his biological sons, I said a few words, which are as follows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">My memories of Mr. Ornelas begin with seeing him, without fail, drive Rene halfway across town twice a day to attend HSPVA to support his artistic calling, even though his own predilection was for handicraft. The tireless devotion of a father working to create a better life for his son.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I remember fondly when we would gather at Woodlawn, three houses on the same street, his sly smile and contentment seeing all of his family so close together. Gosh, looking back, we were so poor, but only in money. We were rich in love and family. My memories of those times are not what we lacked, but the abundance of what we had together, which was time, friendship, and some pretty darn good food.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Mrs. Ornelas, your love and devotion to your husband through these twenty one years of dementia is an inspiration to us all who love a partner and a testament to the human spirit. Su amor y devoción hacia su esposo a lo largo de estos veinte uno años de demencia son una inspiración para todos nosotros que amamos a una pareja y un testimonio del espíritu humano.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To Jesse, Eddie, and Rene, I will say that how you live as men is a testament to the example your father set. I can’t imagine how proud he must be looking down at this room, seeing how he came from such challenging conditions in Mexico to build a life for you all here in Houston and see every generation grow and prosper even more. Rene, I hope <a href=\"https://ma.tt/chuck/\">our fathers</a> are together, cracking a beer and smiling as they look down on our lives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Though his corporal form is no longer with us, everyone here will keep him alive by remembering and embodying his best qualities. We don’t need a bracelet to remind us What Would Jesus Do in those invisible acts of service for loved ones.</p>\n\n\n\n<p class=\"wp-block-paragraph\">May his memory be a blessing to all of us, and let our actions, seen and unseen, honor his legacy.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Jan 2026 04:30:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Open Channels FM: Do the Woo Live with Matt Mullenweg Kicks Off January 14, 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://openchannels.fm/do-the-woo-live-with-matt-mullenweg-kicks-off-january-14-2026/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"On January 14, 2026, at 15:00 UTC, the Do the Woo podcast returns live with hosts Katie Keith and James Kemp, featuring Matt Mullenweg discussing WooCommerce\'s future.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Jan 2026 13:55:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Open Channels FM: Making Accessibility Fun and Brain-Friendly for Web Developers and Designers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=114100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://openchannels.fm/making-accessibility-fun-and-brain-friendly-for-web-developers-and-designers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"In this episode, Anne Bovelett chats with Gehirngerecht founders Nina Jameson and Tobias Roppelt, discussing their mission to promote digital accessibility through engaging workshops and tools.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Jan 2026 12:22:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Shorter Speech\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151076\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2026/01/shorter-speech/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:898:\"<p class=\"wp-block-paragraph\">One of the great WordPress blogs is <a href=\"https://quoteinvestigator.com/\">Quote Investigator.</a> In their investigation into the original source of <a href=\"https://quoteinvestigator.com/2012/04/28/shorter-letter/\">&#8220;If I had more time, I would have written a shorter letter,&#8221;</a> I came across this great variation from Woodrow Wilson on the amount of time he spent preparing speeches.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">“That depends on the length of the speech,” answered the President. “If it is a ten-minute speech it takes me all of two weeks to prepare it; if it is a half-hour speech it takes me a week; if I can talk as long as I want to it requires no preparation at all. I am ready now.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">So true.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Jan 2026 07:47:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Matt 4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://ma.tt/2026/01/matt-4-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5175:\"<p class=\"wp-block-paragraph\">It&#8217;s that time of the year again for a new version release. Forty-two is a fun number, of course, famous from <a href=\"https://www.amazon.com/Hitchhikers-Guide-Galaxy-Douglas-Adams-ebook/dp/B000XUBC2C?tag=photomatt08-20\" rel=\"noreferrer noopener\" target=\"_blank\">The Hitchhiker&#8217;s Guide to the Galaxy</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m in Miami, where I&#8217;m attending a conference by <a href=\"https://www.wurman.com/\">Richard Saul Wurman</a>. I decided that it would be a great way to fill my brain on my birthday. Since New Year’s, I’ve been in warm climates and had lots of dips in the ocean. Had a small birthday dinner a few days ago and my friends <a href=\"https://x.com/photomatt/status/2010395993343410561\">surprised me with a beautiful “HappyBdayMattic” cake</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This last year was particularly challenging, especially at the beginning. However, it just kept getting better, and particularly WordCamp US in August was inspiring. The warmth and support of the WordPress community pulled me out of the funk I had been in. It was also when I kicked off the habit of daily blogging, which led to 2025 being the highest number of words (34.7k) I’ve posted since 2004! I traveled 209k miles, about a third lower than last year, spending longer stretches in 45 cities and 16 countries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of my biggest lessons of the year was learning how to ask for help. I&#8217;m usually the person others come to, and I carry a lot of responsibility on my shoulders from my friends and loved ones, and for the companies and communities I&#8217;m lucky enough to be part of. I&#8217;ve had some bad experiences asking for help in the past, as well. Now, how I see it is that it might not always work, but if you don’t ask for help, you also don’t give people the chance to step up. This year, the support of several friends got me through some really tough spots.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A joy of this year was seeing my godchildren grow up, close friends starting families, and the <a href=\"https://audrey.co/scholars/\">Audrey Scholars</a> program. There’s a Walt Disney quote I just found out about that I love: “I do not make films primarily for children. I make them for the child in all of us, whether we be six or sixty.” Kids can&#8217;t help but remind you how important it is to maintain that childlike sense of curiosity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A random new thing I&#8217;ve adopted this year is coconut water. I’ve been trying to hydrate with electrolytes, especially first thing in the morning, and it’s a great natural source of minerals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">My main goals this year are to keep up daily writing, post some of my archive photos, finally visit Rome and bring my family, swim more, and be the best leader for Automattic and the WordPress community through the incredible changes and opportunities of the AI era.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Even though I have several decades of history now, I find myself looking forward far more than back. Great words to live by I just learned from <a href=\"https://en.wikipedia.org/wiki/Jeffrey_Katzenberg\">Jeffrey Katzenberg</a>, apparently originally from <a href=\"https://en.wikipedia.org/wiki/Douglas_Ivester\">Doug Ivester</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Never let your memories be greater than your dreams.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That said, it is a funny time to revisit <a href=\"https://ma.tt/2006/01/matt-22/\">my original version-number birthday post, 2.2</a>, which is exactly 20 years old now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wish everyone a wonderful 2026!</p>\n\n\n\n<p class=\"wp-block-paragraph\">All birthday posts: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"https://ma.tt/2016/01/thirty-two/\">32</a>, <a href=\"https://ma.tt/2017/01/thirty-three/\">33</a>, <a href=\"https://ma.tt/2018/01/thirty-four/\">34</a>, <a href=\"https://ma.tt/2019/01/thirty-five/\">35</a>, <a href=\"https://ma.tt/2020/01/thirty-six/\">36</a>, <a href=\"https://ma.tt/2021/01/thirty-seven/\">37</a>, <a href=\"https://ma.tt/2022/01/thirty-eight/\">38</a>, <a href=\"https://ma.tt/2023/01/thirty-nine/\">39</a>, <a href=\"https://ma.tt/2024/01/forty/\">40</a>, <a href=\"https://ma.tt/2025/01/forty-one/\">41</a>, <a href=\"https://ma.tt/2026/01/matt-4-2/\">42</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Jan 2026 18:54:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Classical Accordian\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2026/01/classical-accordian/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1492:\"<p class=\"wp-block-paragraph\">So my new obsession is a Ukrainian-born musician, <a href=\"http://www.hrustevich.com/en/\">Alexander Hrustevich</a>, who plays a type of chromatic Russian accordion <a href=\"https://en.wikipedia.org/wiki/Bayan_(accordion)\">called a Bayan</a>. He plays incredible transcriptions of classical pieces, replicating the parts of an entire orchestra with just two hands. If you&#8217;re familiar with Vivaldi&#8217;s Four Seasons, you know the Presto for Summer is one of the most challenging parts. Listen to this, it&#8217;s just a bit under three minutes.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.youtube.com/watch?v=9SE222v1eyM\">Here&#8217;s the 14 minute version</a> which is beautiful to hear the dynamic range that&#8217;s possible. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve always loved the sound of a big pipe organ and the resonance and feel of the bayan. It is really quite remarkable, and it&#8217;s been very enjoyable having a playlist of Alexander&#8217;s music in the background as I work. This <a href=\"https://www.youtube.com/watch?v=jDXkixRjYOg\">Bach-Fantasia and Fugue in G minor BWV 542 is also quite good</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">My 42<sup>nd</sup> birthday is tomorrow! Working on a post for y&#8217;all.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Jan 2026 04:20:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Mad Ones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://ma.tt/2026/01/mad-ones/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:487:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The only people for me are the mad ones. The ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">— Jack Kerouac, On the Road</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Jan 2026 07:57:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: Small Hit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2026/01/small-hit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1146:\"<p class=\"wp-block-paragraph\">The NY Times has a <a href=\"https://www.nytimes.com/2026/01/08/technology/apple-ceo-tim-cook-john-ternus.html?unlocked_article_code=1.DFA.Qm0v.SxztBxvFrAF-&amp;smid=url-share\">profile of John Ternus as a possible successor to Tim Cook</a> that has a number of ridiculous lines; it&#8217;s quite bad, but this is one of my favorites:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Apple has had many small hits under Mr. Cook and continues to be one of the most profitable companies in the world. </p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Goodness! I would love to have a hit someday as the small as the ones Apple has had under Cook. <a href=\"https://www.theverge.com/2020/2/5/21125565/apple-watch-sales-2019-swiss-watch-market-estimates-outsold\">Apple Watch sells more than the entire Swiss watch industry</a>. Airpods are the most popular headphones in the world. <a href=\"https://finance.yahoo.com/news/apple-richer-4-countries-164523140.html\">Their market cap is bigger than the GDP of all but four countries in the world</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Jan 2026 05:45:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Open Channels FM: Eight Years and 1.53 Million Seconds Later\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=113805\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://openchannels.fm/eight-years-and-1-53-million-seconds-later/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"With enough words spoken to fill the Harry Potter series three times over, BobWP shares some fun numbers on this 8th year of the podcast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Jan 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Beeper &amp;amp; Day One\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151033\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2026/01/beeper-day-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:447:\"<p class=\"wp-block-paragraph\">Pankil Shah writes <a href=\"https://www.makeuseof.com/use-beeper-all-in-one-messaging-app/\">I replaced WhatsApp, Telegram, and Messenger with this one app</a>. (It&#8217;s <a href=\"https://www.beeper.com/\">Beeper</a>.) And <a href=\"https://www.nytimes.com/wirecutter/reviews/best-journaling-apps/\">Wirecutter picks the 3 best journaling apps of 2026</a>. (It&#8217;s <a href=\"https://dayoneapp.com/\">Day One</a>.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Jan 2026 05:37:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: #199 – Brian Coords on WooCommerce’s Challenges and Innovations in a Changing WordPress Landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://wptavern.com/podcast/199-brian-coords-on-woocommerces-challenges-and-innovations-in-a-changing-wordpress-landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60076:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, WooCommerce&#8217;s challenges and innovations in a changing WordPress landscape.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Brian Coords.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Brian has been active in the WordPress space for over a decade, starting out in agencies, building and managing websites, and is now a developer advocate at WooCommerce, bridging the gap between woo&#8217;s internal engineers and the wider developer community. His journey includes being a high school teacher, working for nonprofits, and writing for the WP Tavern before landing his role at Automatic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in where WooCommerce and WordPress itself are headed, this episode will help as Brian shares insights on WordPress&#8217;s evolving focus, the importance of embracing AI, and how a slower pace of change can be a strength in any open source ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He talks about the massive rebrand at WooCommerce, the challenges and opportunities in competing with SaaS giants, and the unique developer relations role that balances his technical experience with communication skills.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into how the team Brian works with supports developers and agencies with documentation, office hours, and feedback loops, and how WooCommerce&#8217;s global Reach makes for a complex but thriving ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s discussion about recent marketing efforts, the realities of open source support, and the surprising diversity of WooCommerce users worldwide.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end, we look ahead to what&#8217;s coming for WooCommerce, which is greater integration with block based editing in WordPress Core, major investments in AI to streamline store management, and the future landscape of online shopping.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to hear how WooCommerce and WordPress are responding to a rapidly changing tech environment, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Brian Coords.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Brian Cords. Hello Brian.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:09] <strong>Brian Coords:</strong> Hey, thank you for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:11] <strong>Nathan Wrigley:</strong> You&#8217;re very welcome. I have a lot of respect for Brian. I&#8217;m hoping that by the end of this podcast you also have a lot of respect for Brian.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Brian has been kind of part of my browsing on the internet and WordPress journey, I want to say, for five or six years, something along those lines, I&#8217;ve known about you and followed your stuff. Pretty much everything that you&#8217;ve done. I&#8217;m really pleased that you&#8217;ve come on the podcast to talk to me today about WooCommerce.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Those people that don&#8217;t know Brian, I&#8217;m going to give you an opportunity just to introduce yourself. So would you mind, I know it&#8217;s a banal question, but little potted bio, couple of minutes about your WordPress journey, or you can talk about the guitars in the background if you prefer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:47] <strong>Brian Coords:</strong> Yeah, nobody wants to hear me talk about or play a guitar.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, so I&#8217;m Brian. I&#8217;m a developer advocate at WooCommerce, so I work on sort of the community side, bridging the gap between the community of developers that build on top of WooCommerce or build stores with WooCommerce, and then our internal engineers and make sure that communication channel stays open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But before that, I spent probably 10 years working at a WordPress agency. So building sites, managing team of developers, doing all the kind of work that a WordPress agency does and sort of lived through that time from early page builders all the way until the last few years in the rise of the block editor. So I kind of have that personal experience of what it&#8217;s like just selling WordPress websites for a living.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And before that, my career went through a whole bunch of different places. Was a high school teacher, worked at nonprofit, all sorts of different things. So happy to be at Automattic, where I get to sort of teach, sort of build websites and just hang out with people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:44] <strong>Nathan Wrigley:</strong> I had no idea that you were a high school teacher. I have enormous respect for anybody who takes on a role in public education. So that&#8217;s interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I&#8217;m going to segue a little bit. This question&#8217;s just occurred to me from everything that you&#8217;ve just said, given that you&#8217;ve been in the space of WordPress for the last 10 years, more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s a bit of a peculiar one, but are you as excited about it as a project as you were, let&#8217;s say, 10 years ago? Do you still think that it&#8217;s got the future that you probably thought it had a decade ago?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:13] <strong>Brian Coords:</strong> Yeah, I mean that&#8217;s a good question. I would say overall, yes, I am excited about it. I think that if there&#8217;s any concerns about WordPress or things to be not excited or scared about, it has nothing to do with WordPress and has everything to do with the internet as we know it, and AI and everything changing and economics and all these other sorts of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The project itself, it seems to, I would say over the last year, really narrowed its focus on what it thinks its role is. And I think it&#8217;s adopted the AI change really well, and that&#8217;s made me very excited. I think it understands, you know, I think some of the things about WordPress is sometimes the day to day, you feel like the decisions are a little confusing, but if you look at it over the long term, it&#8217;s half the internet. So clearly the decisions tend to work out in the long run. So I think I still have faith in the project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:01] <strong>Nathan Wrigley:</strong> I find that the slow pace of change is actually one of its greatest strengths, but it takes an awful lot of mulling it over and sitting down and being calm with yourself to think, why hasn&#8217;t it got all these features? Why is it not keeping track of this, that, and the other thing that&#8217;s going on on the internet? But broadly, when you look back at any 2, 3, 4, 5 year period, I think usually that was the right decision, although it feels like it might not have been the right decision when that moment is passing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:32] <strong>Brian Coords:</strong> Yeah, there&#8217;s a lot of people who look at a lot of decisions, like say the block editor and they say, well, why didn&#8217;t they just take Elementor and stick that in Core and stuff, you know? Regardless of the fact that Elementor is a successful business that probably doesn&#8217;t want their software stolen and taken into Core. But I think if you look at it now you, a lot of those decisions would&#8217;ve seemed a little crazy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the fact that it doesn&#8217;t throw everything and that it just throws the kind of basic foundational layer, and then it allows something like Elementor or any of these other page builders to be successful businesses and do their thing. The fact that it empowers that to exist, or it empowers all the other builders to exist, or it empowers WooCommerce or all these other plugins to exist, is a testament to the fact that it didn&#8217;t try to be everything to everyone, and it just kind of stayed in its lane as a foundational layer. And so I think it&#8217;s, it doesn&#8217;t feel like it&#8217;s doing that much, but it&#8217;s working out well for everyone in the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:24] <strong>Nathan Wrigley:</strong> We don&#8217;t want to get into this, in fact, I&#8217;m going to insist that we don&#8217;t get into this. But I think it is a really interesting time with the tsunami of things that are going on with AI to see how a CMS can cope with the future with AI as a possible tool to do everything. To do every single thing that would be required in building a website. It&#8217;ll be interesting to see how the project goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And, you know, there&#8217;s a lot going on there, and I think this is one of those moments where we have to just sort of sit down and be calm and see what the teams are doing and just have faith. I think at least that&#8217;s my position anyway. So you don&#8217;t have to respond to that if you don&#8217;t want to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:00] <strong>Brian Coords:</strong> Yeah, I&#8217;m just overwhelmed by AI sometimes on my day-to-day work. And so I do have to remind myself the only thing you can do is sit and go slow and just see what happens, because I don&#8217;t think we can predict it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:11] <strong>Nathan Wrigley:</strong> No, I think you would be right. So when you joined Automattic, how long ago was that now? Roughly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:16] <strong>Brian Coords:</strong> Almost a year. Early this year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:18] <strong>Nathan Wrigley:</strong> Yeah. Did you have intuitions at that point that WooCommerce was where you were going to end up? Was that where you were heading or is that just sort of serendipity?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:26] <strong>Brian Coords:</strong> No, well, not really. When I first started, I kind of was all over the place. I was here at WP Tavern for a few weeks as part of that trial writing project. I did some work with wordpress.com and kind of got to see behind the scenes of that, and I had friends at all different parts of the company.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What I knew that I wanted to do was developer advocacy or what some people call developer relations. I knew that that&#8217;s where the role that I wanted, but I don&#8217;t think I would&#8217;ve thought of Woo. But then when the opportunity came up, there was a lot that I really liked about WooCommerce that I thought it had such a strong idea of what the product is, who the customers are. They had just done that rebrand where they had the new logo and the new colours and the new design. It felt like the whole company was kind of just doing really cool things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So once the opportunity came up, I&#8217;ll be honest, I didn&#8217;t build a lot of WooCommerce stores before I joined. So other than being kind of afraid of learning all of this stuff it was, definitely it made sense once the opportunity came up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:22] <strong>Nathan Wrigley:</strong> Yeah. With the sort of WooCommerce side of things, are you happy with that move? You know, you&#8217;ve got your feet onto the table now and you feel that&#8217;s where you&#8217;re going to stay, I guess, for the near future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:32] <strong>Brian Coords:</strong> Yeah, definitely. What&#8217;s interesting about Automattic is over the last year, since I joined it&#8217;s been kind of a turbulent year at the company, but one of the things they&#8217;ve been really trying to do is centralise things and be more consistent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in WooCommerce, there&#8217;s a lot of stuff that WooCommerce would go off and do, and it would be kind of different from say, Core WordPress or wordpress.com or WordPress VIP, or all these different kind of parts of WordPress inside of Automattic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And over the last year, they&#8217;ve tried to kind of centralise and say, why do we have three different plugins that are doing similar things. Or why can&#8217;t we streamline all of this or have everybody working on the same stuff. So WooCommerce has been doing a lot of work really towards Core WordPress, and making the Core WordPress experience better so that WooCommerce can use those tools instead of doing it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in a weird way, I&#8217;ve actually gotten to collaborate a lot more with some of the other sides of the company and people who do this job but are not in WooCommerce. There&#8217;s a whole team that has people like, let&#8217;s see, Ryan Welcher, Justin Tadlock, Jonathan Bossenger, that whole group. So it&#8217;s kind of nice. We&#8217;re in our little Woo bubble too, but then I get to work with them and learn from them, and work on Core WordPress too. So it&#8217;s kind of, it&#8217;s been nice. We&#8217;ve kind of brought everyone a little closer, I think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:42] <strong>Nathan Wrigley:</strong> It is kind of interesting over the last 18 months or so, having spoken to quite a few Automatticians, it does feel like the landscape inside the company has changed. I don&#8217;t think we need to go into that, but it is interesting you saying that, because feels there was some realignment and moving around, and decisions about which teams were going to collaborate more with which teams. And that seems like what you are saying as well, so there we go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the WooCommerce side of things, you mentioned that you are a developer, well, you said developer advocate, developer relations, kind of the same term really. For anybody listening to this who doesn&#8217;t know what that is, basically, what is the job contract that you&#8217;ve got there? What is your role?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:19] <strong>Brian Coords:</strong> Yeah, so we cover a few different things. From a high level, it really is, we&#8217;re there to help developers inside the company know what developers outside the company are doing and vice versa. So if you&#8217;re building stores with WooCommerce or you&#8217;re building extensions to sell in the marketplace, you know, like plugins that add-on to WooCommerce, or you&#8217;re working at one of our partner companies like Stripe and Google and Snapchat and Reddit and all these companies that integrate with WooCommerce, our job is to make sure that you have access to good documentation and good examples.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We make sure that when a new version of WooCommerce comes out, which is every five weeks, that we publish all the release notes, and make sure that that information is, you know what&#8217;s coming, what&#8217;s changing, what&#8217;s different. We do some video content, we do some office hours hangouts in a community Slack, we keep an eye on the repo for community contributions. So it&#8217;s a lot of different things, but it&#8217;s really just, at the end of the day like, hey, does this help developers on either side of the wall move forward basically?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:19] <strong>Nathan Wrigley:</strong> Do you have to be technical in order to carry out your role, or would there be any scope for somebody in your position to be non-technical? Let&#8217;s say, you&#8217;re a marketing person or something like that. Is there any aspect of that to it? Or is everybody doing your kind of role a technical person with a background in coding and what have you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:37] <strong>Brian Coords:</strong> It&#8217;s a unique role and it&#8217;s kind of a long debate inside of the developer relations community is, does this team go in an engineering department or does it go in the marketing department?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So for example, at Automattic there is another developer relations team that handles a lot of that WordPress Core stuff that I was talking about, and they&#8217;re kind of a little more attached to engineering.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For our team, we&#8217;re part of the WooCommerce marketing department. So of course that&#8217;s going to change a little bit of what we work on, how our decisions are made, that sort of stuff. I don&#8217;t think it changes that much, and in some ways it gives us access to a lot of cool stuff like their design team, which is really nice to have.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it goes both ways, but you really have to be a unique person where you have to be a good communicator, and you have to have some amount of technical experience. You kind of really need both, because at the end of the day we look at a new version of WooCommerce and it&#8217;s, oh, we changed this API and it&#8217;s going to affect developers in this way. It&#8217;s like, I need to be able to communicate that. I need to be able to understand it. I need to be able to know what the implications of that are. So it&#8217;s kind of both.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:35] <strong>Nathan Wrigley:</strong> Do you produce this content in multiple languages or is it kind of English first and then it gets translated in some other department, or indeed does it get translated into another language, do you know?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:45] <strong>Brian Coords:</strong> No, I think pretty much English first. There is a lot of stuff that is translated for, I would say on the, what we call like the merchant side, sort of like the user side. So if you&#8217;re looking for extensions in the marketplace, that&#8217;s available in a lot of different languages. The software itself is translated, but the developer stuff is pretty much English only. Because we&#8217;re a really small team. Like when we look at, there&#8217;s only, at any time, three or four of us working on this for software that&#8217;s on whatever, 8% of the internet, so English only for now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:13] <strong>Nathan Wrigley:</strong> Yeah, the reason I ask, maybe you were present at State of the Word where Matt went through a bunch of statistics. And it was curious to see, for the first time, so WordPress more broadly, not WooCommerce specifically, but WordPress more broadly is now used on non-English websites more than it is on English websites. And so if we&#8217;d have had this interview a week ago, that question probably would not have arisen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;m guessing that WooCommerce goes along for the ride there. I&#8217;m guessing it&#8217;s not just on English speaking websites, I&#8217;m guessing WooCommerce is just literally in more or less every part of the world, in every locale and every jurisdiction. There are people who are using your code, but probably not speaking English.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:52] <strong>Brian Coords:</strong> That&#8217;s definitely the case. So we have a free Slack, that&#8217;s the WooCommerce Community Slack, and it&#8217;s more than 30,000 people in there. It&#8217;s all over. You can definitely tell that people are coming from all over the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the weird things about e-commerce is it&#8217;s very geographically based because the currency matters. The payment provider that handles the payments matters. The shipping options matter. So there are certain places where you can only use WooCommerce because you want to use the custom bank payment provider that&#8217;s only in this one country, that sort of stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So because of how diverse the types of integrations you would need, yeah, WooCommerce is very global. That was one of the things that really surprised me was finding out that, oh yeah, there&#8217;s payment providers you&#8217;ve never heard of, and banks you&#8217;ve never heard of, and shipping companies you&#8217;ve never heard of and they need to integrate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:40] <strong>Nathan Wrigley:</strong> And tax. So much tax, I&#8217;m sure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:43] <strong>Brian Coords:</strong> Oh my, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:45] <strong>Nathan Wrigley:</strong> I&#8217;m sure it gets brutal. I don&#8217;t know exactly when the time was, but it feels like about, I&#8217;m going to say 18 months or something, when Woo underwent a fairly significant rebranding. So from a marketing point of view, the logo changed, the colour palette changed, the website changed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I didn&#8217;t really notice until that moment when it did change that it needed to have changed, if you know what I mean? It just always looked fine to me. But the moment it changed, I kind of got a sense that, oh, okay, this is real now. We&#8217;ve kind of identified that there are these SaaS players, so you know, we don&#8217;t need to name them, we all know who they are, where you pay your monthly fee and you get a shop and yada, yada, yada. But I don&#8217;t know if that&#8217;s a part of the roadmap.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And summing it up as more serious, obviously that&#8217;s trivial and a bit, really not the right term, but do you know what I mean? It feels like WooCommerce has, I don&#8217;t know, grown up a little bit over the last 18 months and realises the, I don&#8217;t want to use the word fight, but I&#8217;m going to, the fight that it&#8217;s in with the SaaS players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:41] <strong>Brian Coords:</strong> Yeah, I think that was the intention of that rebrand. So I think the goal was to go from saying, hey, we&#8217;re a WordPress plugin that lets you sell things. To saying, we&#8217;re an e-commerce solution, and we happen to run on WordPress. It&#8217;s kind of just a different framing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But one of the big things is a huge investment in marketing. And so the marketing team has gotten really big. We have a pretty killer CMO. There&#8217;s a ton of investment into different types of ads and demand generation and leads and all this stuff that I kind of don&#8217;t understand, a lot of like acronyms that are thrown around that I don&#8217;t fully track. But it&#8217;s a huge investment to basically reposition WooCommerce as something that feels a bit more modern and, not a SaaS, but kind of can sit there next to the SaaS. So when a company is looking at the options and they&#8217;re saying, oh, do we want to use Magento or BigCommerce or Shopify or WooCommerce, we look like we belong there, and it looks like it&#8217;s an option.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:36] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of curious that there&#8217;s, real money has to be spent on this endeavor because, I was in London just a few weeks ago and I walked onto the Tube, you know, the underground train network. And the platform that I was on, the first thing that I saw when I walked onto the platform was this huge ad for Shopify. And then I looked left and I looked right and it was Shopify ads all the way down. They&#8217;d obviously, I mean I can only imagine how expensive that real estate is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the same thing would be true on radio, on TV, online, on print. These companies have gigantic, I mean truly eye watering budgets. And I don&#8217;t know if the WooCommerce side has to be a bit more guerrilla or if you also have a fairly gigantic budget. I don&#8217;t know if you&#8217;re able to peel any of that back. It sounds like marketing&#8217;s not really your thing, but maybe there&#8217;s bit of interest there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:25] <strong>Brian Coords:</strong> Yeah, I mean since we&#8217;re in the team, we see a lot of it. We did an event earlier this year where our marketing team walked through some of this stuff, so I can maybe give you a link to put in the show notes. We kind of wrote it, did a write up about that very concept. Because we get asked that a lot, why am I seeing Squarespace and Shopify ads everywhere? And it&#8217;s, you know, obviously if you look at the size of the companies, it&#8217;s a fact, like a whole factor difference, like we&#8217;re not anywhere near the size of those companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And part of the issue is that you don&#8217;t just go to woocommerce.com and hand us money, you know? The Core plugin is free so the way we monetise is a lot different. You can run it anywhere. You can, a lot of people that run WooCommerce, they&#8217;re not paying us in any way because they&#8217;re using their own payment providers and those sorts of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it is definitely more of a challenge. But this past year, that&#8217;s why the rebrand started, that&#8217;s why they&#8217;ve been investing in it. And it&#8217;s been kind of cool. There&#8217;s a lot of podcast ads that we&#8217;ve been running and LinkedIn ads and all these sorts of things. And part of the issue too is that our target market is just much more narrowly defined, and so WooCommerce is much more customisable. It&#8217;s extensible. You can do whatever you want with it. And that&#8217;s just a different value proposition then you would say to somebody who just wants the easy SaaS solution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s a lot of things, but it&#8217;s kind of just knowing who we want and targeting directly to them. And so you probably won&#8217;t see ads on the Tube at any time, but for certain areas you&#8217;re going to start seeing really targeted ads for people at the places that would actually really benefit from having WooCommerce.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:51] <strong>Nathan Wrigley:</strong> That was the thought that I had about seeing the Shopify, in this case, ad on the London underground was just how much the audience, the eyeballs that were actually staring at that had no interest in it at all. And so almost like the bottomless pit of money that they must have to throw at these things. And obviously it sounds like you are targeting people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Are you kind of like riding on the coattails of WordPress in general? In other words, are you targeting existing WordPress users in the hope that they&#8217;ll think, okay, yeah, we&#8217;ve got a WordPress site, now it&#8217;s time to upgrade to WooCommerce, or is it a bit more scatter gone, you need a website, you need e-commerce, we&#8217;re your solution?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:26] <strong>Brian Coords:</strong> Yeah, I mean that&#8217;s an interesting question because I think when WordPress was growing, it was a lot easier to target inside of WordPress, and I think now we&#8217;re seeing all the big companies reevaluate that. So I would say the ads that I see a lot are, you know, Hostinger, Elementor, wordpress.com. And I think a lot of them are realising now, you know, we need to target outside.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So for example, WooCommerce this year, we go to all the WordCamps, but we started going to e-commerce expos that are trade shows that are not anything to do with WordPress. It&#8217;s just for people in the commerce industry and partnering with companies that are in the marketing and commerce side. And so, yeah, it really is about branching out and finding those new areas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think all WordPress companies are going to kind of have to start facing that as well because WordPress is 43% of the web. It&#8217;s like, how much bigger realistically can you get, once we pass 50%? I mean that&#8217;s, it&#8217;s pretty hard to grow at that point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:19] <strong>Nathan Wrigley:</strong> Did you attend any of those events? The sort of expos for e-commerce more generally?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:23] <strong>Brian Coords:</strong> No.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:24] <strong>Nathan Wrigley:</strong> Yeah, I was going to follow up with a question about whether or not there was brand recognition. At those events, if you&#8217;ve got a WooCommerce stall, I was curious as to know what proportion of the public would walk past a WooCommerce sign and go, yeah, yeah, I know what that is, I&#8217;ve got complete familiarity with it. I feel like some of the SaaS ones, maybe they&#8217;ve done that job so well that that brand recognition is there, but maybe that work still needs to be done on the Woo side, I&#8217;m not sure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:49] <strong>Brian Coords:</strong> There&#8217;s definitely not going to be the same level of brand awareness. I think, like you said, like guerrilla marketing is definitely part of it. One of the things they do at these is they&#8217;ll find a local store that uses Woo and use them for swag. So they&#8217;ll get really good swag. They did like homemade, like embroidery things and all this sort of stuff. And so they end up getting very popular because of how cool the swag is, and how meaningful it is, and it supports a local merchant. But yeah, it&#8217;s a big battle, you know, to raise that brand awareness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:18] <strong>Nathan Wrigley:</strong> Okay, let&#8217;s just turn a bit more to your Dev Rel stuff. And you were saying that, well, I don&#8217;t need to repeat what you said. You said a little while ago, who it is that you are interfacing with out in the real world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How does that work? Like, do you just sort of put content out there and tutorials out there and videos out there and change logs out there, and kind of hope that the people that need it get to see it somehow? Or is there more of an endeavor of, I don&#8217;t know, providing the bat phone, for want of a better word, to agencies and people so that they can communicate directly with you? How does that whole thing work?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:48] <strong>Brian Coords:</strong> Yeah, so it&#8217;s interesting because there&#8217;s definitely different audiences that we have. So we have developers who are building extensions and are, you know, they&#8217;re selling WooCommerce plugins basically. And so we have them that we need to communicate with. And then we have the agencies and the agencies are building WooCommerce stores for people. So they&#8217;re setting up WooCommerce.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And those two audiences, they both need some of the same information, but they also need a lot of different information. And so we&#8217;ve kind of seen a lot of change over the last year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Automattic has launched a program called Automattic for Agencies. I&#8217;m not sure if you&#8217;ve seen this. It&#8217;s kind of like an agency program where you sign up and you get access to extensions, you can get affiliate fees, you can get kickbacks on payments, volume, all that sort of stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that side has really, sort of owned the agency space. And so what&#8217;s nice is we can go to them with any new information. We could say, hey, just pass this along to your audience in your next newsletter, that sort of thing. But really, if we want to have the conversations, I would say the Slack is the most common and we never lack for feedback. We get plenty of feedback. We do a monthly office hours in Slack or sometimes on Zoom, where developers will come and share their questions, that sort of thing. So we get tons of feedback. But yeah, it&#8217;s really just about being present there, being present on Twitter. We&#8217;re ramping up YouTube, because YouTube&#8217;s really important right now. And we&#8217;re just, like I said, small team and trying to hit all of those different content areas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:13] <strong>Nathan Wrigley:</strong> My sort of follow up question there really was going to be something about shouting into the void and I wondered if that, it was in fact what was happening. But it sounds from what you are saying is if, no, there is an actual loop there. You put stuff out and you get feedback. I mean I&#8217;m guessing, from the sounds of it, there&#8217;s maybe more feedback than you can actually cope with, which is intriguing. I had an intuition that would be the other way around.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:32] <strong>Brian Coords:</strong> Yeah, I mean it definitely depends on, sometimes you get feedback that&#8217;s kind of the same. We know what people want, and we&#8217;re trying to work as fast as we can to make the changes that developers and the community want. And sometimes you put out a feature and it doesn&#8217;t resonate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But generally when we do calls for testing of a new feature we&#8217;ll post, all right, we have a new feature coming, it&#8217;s in experimental mode, here&#8217;s how to turn it on and then let us know if it&#8217;s working for you, if it&#8217;s working with your plugin and stuff. We definitely have a pretty healthy group that will take the time to contribute back, let us know if things are working. I mean it&#8217;s an open source project. We get community pull requests. We get people, they need a feature, they build it and submit it and, you know, hopefully we merge it. And so the feedback loop is definitely there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But if you&#8217;re, the thing that I&#8217;ve learned about WordPress is that I think it&#8217;s like an iceberg and like 90% of the WordPress community, they&#8217;re not really listening to WordPress content, and they&#8217;re not listening, they&#8217;re not even tracking WordPress in general. And so I think there&#8217;s probably a much broader community that we&#8217;re not getting access to, and they&#8217;re just living their daily lives and just building stores and stuff. And so I would love to find more of those groups. I think Facebook is probably a place that we haven&#8217;t even touched yet, and I&#8217;m sure a lot of them are there. There&#8217;s definitely work to be done there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:46] <strong>Nathan Wrigley:</strong> Yeah, I think that was maybe the piece that I was thinking. Is that Woo is the biggest solution out there. If memory serves, Woo is the biggest e-commerce platform out there. It kind of dwarfs all the others. I don&#8217;t even know if WooCommerce is bigger than the rest of them combined but, you know, it&#8217;s on that kind of level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yet, if you were to have a, I don&#8217;t know, a Shopify store or something, there is probably like a little submit feedback button in the UI somewhere, and you can talk to the support representatives, and they&#8217;ll have the answer specifically because they know exactly what the platform does.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the jigsaw puzzle over on the Woo side is, yeah, it must be much more messy, much more kind of difficult to wrangle everything. You know, you&#8217;ve got people, end users who are using WooCommerce. You&#8217;ve got developers who are building plugins. You&#8217;ve got agencies who are building on behalf of clients. You&#8217;ve got people who are building rival things so you&#8217;re in direct competition with people in the plugin space who are building rivals to WooCommerce. It&#8217;s just, well, messy. But that&#8217;s open source, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:44] <strong>Brian Coords:</strong> I mean that&#8217;s exactly what it is. You know, we have, you have WooCommerce support, right? And our support team is really great. Every time I go to a conference and one of our support engineers is there, I&#8217;m always pointing to them to answer all the questions because they know the product so deeply.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But if you imagine the, you know, most WooCommerce stores will come to us for support, but there&#8217;s no financial relationship. If they&#8217;re not using our hosting company or they&#8217;re not using Woo Payments, or they&#8217;re not using extensions that they bought in the marketplace, maybe they bought their extensions just off the internet or something, there&#8217;s a good chance they might not be paying us any money at all. And yet, you know, we&#8217;re going to support them and make sure that they&#8217;re having a good experience, because that&#8217;s kind of the goal of it. So it&#8217;s definitely a bit of the Wild West out there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:28] <strong>Nathan Wrigley:</strong> There must be some kind of strange tension there as well. I mean, you&#8217;ve described it very eloquently and I think you&#8217;ve stepped around that beautifully, but that is a peculiar thing, isn&#8217;t it, that you would not have to deal with elsewhere? The fact that you may very well be dealing with rivals. You may well be dealing with people who are using up your time, but like you said, they have no relationship with you financially at all, but they built something, third party thing on top of the WooCommerce ecosystem, and I guess that&#8217;s just the broader philanthropic goal of something like WooCommerce. You&#8217;ve just got to step up and be there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:00] <strong>Brian Coords:</strong> Yeah, I mean I think wordpress.com probably has a lot of the same things because if you Google WordPress, you know, you&#8217;re probably going to end up on wordpress.com, even if you&#8217;re not their customer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the flip side though, you know, the benefit of being open source is that, like I said, we get community contributions. We get a lot of eyes on the software. A lot of people, they give us feedback, they give us code, they give us all sorts of things. So it is a bit of a trade off.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think it&#8217;s kind of worth it for the software to just exist freely and for everybody who runs on it, to always kind of know deep down that they own their store and they can do whatever they want with it, and they can put it wherever they want, and Automattic or WordPress or WooCommerce is never really going to take that away from them or take them down, you know?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:38] <strong>Nathan Wrigley:</strong> Yeah, I&#8217;d be curious to know what proportion of Woo kind of props up the broader WordPress project, if you know what I mean? I don&#8217;t think we need to go into that, and I don&#8217;t know if there&#8217;s any data out there anywhere, but there must be a lot of money sloshing around inside the WooCommerce ecosystem. It&#8217;d be interesting to know what proportion the broader WordPress ecosystem was was made up of just Woo stuff. That&#8217;d be an interesting thing to dig into.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:01] <strong>Brian Coords:</strong> When I worked at an agency, the kind of rule was if you wanted to make money making websites, you did websites that made money. So e-commerce was a big part. People, you know, their website&#8217;s more critical to their business, so they&#8217;re going to be buying more plugins, they&#8217;re going to be paying more developers, they&#8217;re going to be using more tools. So I think that&#8217;s part of it. E-commerce isn&#8217;t the only way websites make money. There&#8217;s definitely a lot of other things, big publishers and that sort of stuff. But yeah, it&#8217;s definitely a big part of the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:26] <strong>Nathan Wrigley:</strong> Well, big and not going anywhere. Speaking of going places though, what&#8217;s coming up in the near future? So when we&#8217;re recording this, it&#8217;s kind of the middle of December. I imagine this episode will hit in the beginning of 2026 at some point. Roughly around that kind of time, what&#8217;s the thinking? What are the, some of the top level items that people may not know about? What&#8217;s the stuff that you&#8217;re working on? Roadmap stuff, I guess.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:46] <strong>Brian Coords:</strong> Yeah, I would say the big things that I&#8217;ve seen that are really the big focus right now is, number one is really making WooCommerce closer to WordPress Core, which means making WordPress Core a little better. So WooCommerce has been pretty ahead of the curve of transitioning to blocks, using block templates and block based everything. So, I mean you can do your whole WooCommerce store in the block editor, which gives you a lot of kind of design freedom. But that means if we need something better in the block editor, we&#8217;ve got to commit that up to the block editor and make Gutenberg better. So there&#8217;s a lot of work to improve a lot of stuff inside of Gutenberg so that your WooCommerce experience is better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s been a lot of the focus. And so we&#8217;re, there&#8217;s a lot of cool stuff coming around just new blocks, new block designs, patterns, things you can do to really customise the visual aspects of your store. And then the second big thing, I think that is taking up everybody&#8217;s mental space is AI. You can&#8217;t not talk about it. So it&#8217;s, that&#8217;s the other piece.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:42] <strong>Nathan Wrigley:</strong> Okay, despite the fact that it consumes all the air in the room, it is so fascinating. Do you have any insight into some of the things that may be on the agenda for a WooCommerce store owner in the near future? The kind of things that you are thinking of. Even if they&#8217;re just aspirational for a WooCommerce store owner. I&#8217;d be curious to hear your thoughts on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:01] <strong>Brian Coords:</strong> Yeah, I think there&#8217;s two different aspects of it that are really going to be important. One is managing your store. So we have right now in beta what&#8217;s called an MCP server in Woo. And what it basically lets you do is open up, you know, ChatGPT or Claude or something and say, log into my WooCommerce store and update all my products, put them on sale, change out the pictures, write better copy for them. It kind of lets AI log into your store and do things for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that&#8217;s in beta right now, and it&#8217;s pretty cool. I&#8217;ve been using it. It&#8217;s pretty neat. I&#8217;ve been setting up some demo stores for people, and I just go, all right, log in and make me, you know, 50 fake sweaters with a nice description in different colours. And it does it. It&#8217;s kind of mind blowing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:43] <strong>Nathan Wrigley:</strong> Do you trust it at this point? And I don&#8217;t mean, you know, the broader kind of debate about AI and whether it&#8217;s trustworthy. I mean, in terms of the store, you know, do you trust it to update all of the particular product lines and what have you, or update the images? Do you feel that if you&#8217;ve given that prompt, you can sort of sit back and go, okay, that is definitely being done?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:02] <strong>Brian Coords:</strong> I haven&#8217;t done it on a live site, I will say. The nice thing too is you can have it ask you for permission every single time, and you can kind of see what it&#8217;s going to do. That obviously kind of ruins the whole efficiency part of it, but it can do that. So I think it&#8217;s early days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I do think, once you start interacting where you don&#8217;t have to actually log in and click a bunch of buttons, and you can just tell your computer what you want it to do, I think it&#8217;s going to be hard to come back from that. I think people are going to start expecting it. But I, yeah that&#8217;s, I mean we&#8217;re not doing that on the live, on any live sites, I hope not.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:32] <strong>Nathan Wrigley:</strong> So that was half of it by the sounds of it. That was one of the threads. What was the other one?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:35] <strong>Brian Coords:</strong> The other one, I think is about how people are going to be shopping in the future. And I think showing up, obviously all these chat companies, they need to make money, and we know that they&#8217;re going to start showing ads and they&#8217;re going to start wanting to do the same thing when you go to Google, and you look up something and it gives you some shopping recommendations and shows you some products you might want to buy and some ads. You know, we&#8217;re going to start seeing that in our chat bots and stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I think it&#8217;s going to be important for people that have WooCommerce stores, they want their products to show up there, and they want their ads to show up there, and they want to make sure that people who are using AI to get product recommendations, which my wife does all the time, that they&#8217;re going to show up there. So I think that&#8217;s the other half of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:13] <strong>Nathan Wrigley:</strong> Yeah. Do you know it&#8217;s really curious, the whole, what we might have called SEO, which is fast giving way, I think, to AI. It&#8217;s kind of curious. I think there&#8217;s like a whole section where the discovery of the website is going to be everything. So an example might be apparel. I don&#8217;t suppose anybody&#8217;s just going to buy a blouse or a shirt based upon some text that they saw in a chat bot, but getting to that page and saying, find me, locally to me, find me a place which sells, I don&#8217;t know, affordable shirts for work, or something along those lines. And have a recommendation, which gets you to the WooCommerce store.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But for more utilitarian things, just the stuff that you don&#8217;t really care about like, I want to buy a bunch of nuts and bolts, or hammers, or spanners, or whatever it may be, I feel like there&#8217;ll be a point where the store itself, obviously all of that commerce will take place in the store, but it will be invisible to you as a user. You&#8217;ll just tell the AI, buy these things, I need 50, or even just repeat the order from last month for these things, and it&#8217;ll just magically happen in the background. You&#8217;ll get a receipt via email, and WooCommerce will have handled it. The site will have been notified in some way, but you&#8217;ll have had no interaction. So it&#8217;s kind of scary, but interesting at the same time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:23] <strong>Brian Coords:</strong> I think one of the thing, I think Google&#8217;s the best example because I think WordPress and Google have this really symbiotic relationship because we make the websites and they provide the traffic. And I think it&#8217;s been good for both of them. They want a bunch of websites to send people to, and we want them sending people to our websites. And so I think Google&#8217;s a great example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But they&#8217;ve had product recommendations that you can connect to your WooCommerce store, you know, for a while now. It&#8217;s kind of in some ways not really that different from just Googling something. Google shows you some products and then you click through and you buy it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If it becomes that seamless where you don&#8217;t even have to realise you&#8217;re going to a website, which I think is possible, I also wonder, will people want to do that? Will they feel as trustworthy? Maybe, maybe not. But either way, that is probably going to be the case.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that&#8217;s going to require a lot of these, the discussion&#8217;s already happening. They have these payment protocols and things, and we&#8217;re starting to see the very beginning of it. So it&#8217;s kind of interesting to be inside of WooCommerce because the companies that do all this stuff, the Stripes and the PayPals and the Googles and stuff, these are partners that they work closely with. And you get to see a little behind the scenes of them trying to figure this out in real time, you know?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:28] <strong>Nathan Wrigley:</strong> Yeah, it kind of speaks to trust really, doesn&#8217;t it? So the repeat order thing through a ChatGPT style interface or whatever that looks like in the future, be it voice or speaking to a camera or whatever it may be, I could totally see myself ordering the, I don&#8217;t know, the groceries or the toothpaste or whatever it is that, I really don&#8217;t need to see that thing. I don&#8217;t need to go to a shopping checkout. I just need to know that my next pack of toothpaste is going to arrive reliably tomorrow morning. That&#8217;s all I need to know. I feel like there is, there&#8217;s a there there, if you know what I mean? Despite the fact that we&#8217;re so wedded to this interface of, go to the website, look at the pictures, click the cart number, click how many you want, go to the cart, proceed with the checkout, dah, dah, dah. Most of that is going to be obsolete for the utilitarian stuff, I think. I don&#8217;t know. We&#8217;ll see.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:15] <strong>Brian Coords:</strong> I feel like Amazon&#8217;s been trying that for a while, but I still have to check it because I feel like we return 30% of the things we buy at Amazon. It comes, it&#8217;s the wrong size, it doesn&#8217;t look anything like the picture, all that sort of stuff. Hopefully those problems still get solved, before we get to the point where I&#8217;m not even going to look at what I ordered. I think we still have a lot of time there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:33] <strong>Nathan Wrigley:</strong> Well, so even if that interface isn&#8217;t quite as radical as I just suggested, but even if there&#8217;s like a back and forth between the AI and the website. I don&#8217;t know, I ask for a particular thing, and then the chat interface or whatever it may be shows me a picture from the website or something along those lines. This whole scraping of the website and surfacing the content of the website, and then I can make those decisions based upon what I see. Maybe it&#8217;ll be a bit more back and forward, and far less of the AI, and more of the AI meets human kind of interface.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:01] <strong>Brian Coords:</strong> Yeah, and I think a lot of it is, it&#8217;ll feel like magic to the end user with an AI, but really it&#8217;s just going to be a ton of code and protocols and extensions and things. Under the hood, that&#8217;s going to be a ton of manual work, getting all that stuff there. But I think with WooCommerce especially, most of the Woo stores I come across, they&#8217;re very weird, I guess is the best way to put it. They&#8217;re unique products, you know? They&#8217;re often not selling the toothpaste and that sort of stuff. Or if they are, they&#8217;re selling the very interesting toothpaste that you can only buy from this one company.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think that&#8217;s what&#8217;s fun about it, is I think it&#8217;ll really be for people looking for those weird, unique products, and the kind of stuff you&#8217;re not going to get on Amazon or you&#8217;re not going to get on a basic walmart.com or something. So yeah, I think it&#8217;ll be interesting to see where this goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:44] <strong>Nathan Wrigley:</strong> Do you know if Automattic, or WordPress more generally, do you know if it&#8217;s investing anything in its own AI? Everything at the moment, all the oxygen seems to be being consumed by the, let&#8217;s say, four big players that we&#8217;ve all heard of. We don&#8217;t need to name the names, we all know who they are. But it&#8217;d be curious as to whether a company obviously deeply rooted in tech, like Automattic is inventing, creating those kind of things. That&#8217;d be a curious shift.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:07] <strong>Brian Coords:</strong> Yeah, I mean you can see it already. Telex is a product that&#8217;s come out from Automattic. It lets you build blocks. They have a AI site builder. If you go to wordpress.com, a good amount of people are actually, the first thing they do is use this AI site builder that gets you kind of from zero to like a pretty decent starting site. And then you can go in and the block editor and customise everything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Is Automattic training their own models and stuff? I don&#8217;t think so, or at least I don&#8217;t know. But, I mean there&#8217;s a bunch of stuff happening, that&#8217;s the public facing stuff, which is building websites. There&#8217;s stuff around WooCommerce, there&#8217;s stuff around support. Our support is very heavily leaned into AI and it&#8217;s actually very good. There&#8217;s all sorts of these other places.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there&#8217;s a ton of stuff internally in the company that we have because, you know, when you work with a thousand people, there&#8217;s a lot of information there. And so we have internal stuff that&#8217;s kind of like search through all of our, you know, internal dialogue and find this conversation and summarise it for me. And so it&#8217;s all there. It&#8217;ll be interesting to see which ones end up becoming good products.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:05] <strong>Nathan Wrigley:</strong> Well, it sounds like exciting times. It sounds like you&#8217;ve landed in the right part of Automattic for you at least anyway. Yeah, fascinating times. The year 2026 for e-commerce, and WooCommerce more specifically, looks very, very bright.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Can we just ask you, before we go, where would be the best place to find you if anybody wants to reach out and say hi?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:23] <strong>Brian Coords:</strong> Yeah, definitely. So if you are interested in WooCommerce, you can go to developer.woo.com. That&#8217;s kind of our developer blog and it has, it&#8217;ll take you to like the docs, it&#8217;ll take you to the community Slack, it&#8217;ll take you to our email newsletter and all that sort of stuff. That&#8217;s developer.woo.com.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For me, it&#8217;s my name, briancoords.com, and I&#8217;m mostly active on Twitter and YouTube these days. I tried all the other social networks, but everyone in WordPress stays on Twitter, so that&#8217;s where I&#8217;ll be for the foreseeable future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:47] <strong>Nathan Wrigley:</strong> So Brian is, as you would imagine it&#8217;s spelled, but Coords has two O&#8217;s. So it&#8217;s C-O-O-R-D-S. I&#8217;ll put all of the links in the show notes so that anything that Brian mentioned can be found there, wptavern.com. Search for Brian&#8217;s name and you will be able to find that episode. So Brian Coords, thank you so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:05] <strong>Brian Coords:</strong> Yeah. Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://x.com/briancoords\">Brian Coords</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Brian has been active in the WordPress space for over a decade, starting out in agencies building and managing websites, and is now a developer advocate at WooCommerce, bridging the gap between Woo’s internal engineers and the wider developer community. His journey includes being a high school teacher, working for nonprofits, and writing for the WP Tavern, before landing his role at Automattic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in where WooCommerce, and WordPress itself, are headed, this episode will help, as Brian shares insights on WordPress’s evolving focus, the importance of embracing AI, and how a slower pace of change can be a strength in any open source ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He talks about the massive rebrand at WooCommerce, the challenges and opportunities in competing with SaaS giants, and the unique developer relations role that balances his technical experience with communication skills.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into how the team Brian works with supports developers and agencies with documentation, office hours, and feedback loops, and how WooCommerce’s global reach makes for a complex but thriving ecosystem. There’s discussion about recent marketing efforts, the realities of open source support, and the surprising diversity of WooCommerce users worldwide.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end, we look ahead to what’s coming for WooCommerce, which is greater integration with block-based editing in WordPress Core, major investments in AI to streamline store management, and the future landscape of online shopping.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to hear how WooCommerce and WordPress are responding to a rapidly changing tech environment, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.briancoords.com\"> briancoords.com </a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://woocommerce.com\">WooCommerce</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2025/12/sotw-2025/\"> State of the Word 2025</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://woocommerce.com/community-slack/\"> WooCommerce Community Slack</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://automattic.com/for-agencies/\">Automattic for Agencies</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://woocommerce.com/payments/\">WooPayments</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://telex.automattic.ai\"> Telex</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://developer.woocommerce.com\">Woo Developer Blog</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Jan 2026 15:09:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Find My Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2026/01/find-my-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1244:\"<p class=\"wp-block-paragraph\">The best part about blogging is the comments, and after I <a href=\"https://ma.tt/2026/01/find-my-upgrade/\">posted</a> &#8220;I wish that when you use Find My to find your iPhone, it would also flash the flashlight, which would be great for finding it in a bag or a dark room.&#8221; <a href=\"https://gravatar.com/mwenderwenmark\">Michael Wender</a> and <a href=\"https://artiss.me/\">David Artiss</a> jumped in that it&#8217;s already there!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Apple support <a href=\"https://support.apple.com/guide/watch/ping-your-iphone-apddd5a326d2/watchos\">says if you touch and hold it will flash the light</a>! Now I haven&#8217;t been able to get this to work yet, perhaps because when I did, I got a notice that Precision Finding, which uses ultra-wideband (UWB) frequencies to help you find your phone or Airtag, which is magical, isn&#8217;t available in all regions. I&#8217;m currently stranded in St. Martin because of airspace issues with Venezuela, and apparently, this is one of the countries, like Indonesia, where UWB doesn&#8217;t work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Update: Hours later, the press-and-hold thing now flashes the light, so it must have been a heisenbug.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Jan 2026 04:30:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Open Channels FM: How to Spot a Committed Business Partner (and Avoid Red Flags)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=113510\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://openchannels.fm/how-to-spot-a-committed-business-partner-and-avoid-red-flags/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"Successful partnerships hinge on genuine commitment, proactive engagement, and collaborative effort, requiring integration across teams and mutual benefits beyond mere visibility for lasting success.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Jan 2026 10:44:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Find My Upgrade\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2026/01/find-my-upgrade/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:192:\"<p class=\"wp-block-paragraph\"><br />I wish that when you use Find My to find your iPhone, it would also flash the flashlight, which would be great for finding it in a bag or a dark room. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Jan 2026 05:58:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Jackson Kiddard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151002\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2026/01/jackson-kiddard/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:809:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Anything that annoys you is teaching you patience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anyone who abandons you is teaching you how to stand up on your own two feet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything that angers you is teaching you forgiveness and compassion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything that has power over you is teaching you how to take your power back.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything you hate is teaching you unconditional love.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything you fear is teaching you the courage to overcome your fear.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything you can’t control is teaching you how to let go.</p>\n</blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Jan 2026 07:26:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 04 Feb 2026 17:06:51 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 04 Feb 2026 16:45:21 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}s:5:\"build\";i:1769930872;s:21:\"cache_expiration_time\";i:1770268011;s:23:\"__cache_expiration_time\";i:1770268011;}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(552, 'db_upgraded', '', 'on');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(151, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder &#8211; More Than Just a Page Builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:6:\"3.35.0\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.9.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6099;i:4;i:218;i:3;i:112;i:2;i:107;i:1;i:646;}s:11:\"num_ratings\";i:7182;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:95;s:24:\"support_threads_resolved\";i:76;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2026-02-02 9:54am GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:25408:\"<p><iframe loading=\"lazy\" title=\"This is Elementor | The complete website building experience for WordPress\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/ROEC0CPRO3w?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe></p>\n<h4>THE #1 NO CODE DRAG &amp; DROP WORDPRESS WEBSITE BUILDER POWERING 20M+ WEBSITES WORLDWIDE, NOW WITH AI.</h4>\n<p>Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly with its no-code, drag-and-drop Editor.</p>\n<p>Supporting the full website lifecycle, Elementor enables you to confidently build, optimize, and manage your website with extended capabilities such as AI-powered creation, image optimization, transactional email delivery, accessibility tools, performance boosters, and more.</p>\n<p>Unlock all features with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/\" rel=\"nofollow ugc\">Elementor One</a></strong>.</p>\n<p>Need fast and secure cloud hosting for your Elementor site? Try out <strong><a href=\"https://elemn.to/repo-hosting\" rel=\"nofollow ugc\">Elementor Host</a></strong> Powered by Google Cloud &amp; Cloudflare. 4.9/5 TrustPilot score.</p>\n<h3>🌟 Create Professional Stunning Websites</h3>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Intuitive Drag &amp; Drop Builder</a></strong>: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/\" rel=\"nofollow ugc\">Pixel-Perfect Design Tools</a></strong>: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/\" rel=\"nofollow ugc\">Template Library</a></strong>: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Advanced Widgets</a></strong>: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-ai/\" rel=\"nofollow ugc\">AI Capabilities</a></strong>: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.</li>\n</ul>\n<h4>🗝️ Key features:</h4>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-global-settings/\" rel=\"nofollow ugc\">Design System</a></strong>: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-responsive-design/\" rel=\"nofollow ugc\">Responsive Design</a></strong>: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.</li>\n<li><strong>Mask Shapes</strong>: Turning any element, like an image or video, into whatever shape you desire to create standout designs.</li>\n<li><strong>CSS Transform</strong>: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.</li>\n<li><strong>Entrance Animations</strong>: Add entrance animations to elements to create engaging and interactive user experiences.</li>\n<li><strong><a href=\"https://elementor.com/features/#SaveBackup\" rel=\"nofollow ugc\">Revision History</a></strong>: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-developers-developers-website/\" rel=\"nofollow ugc\">Developer-Friendly</a></strong>: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.</li>\n<li><strong><a href=\"https://elementor.com/features/contact-button/\" rel=\"nofollow ugc\">Floating Buttons</a></strong>: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/\" rel=\"nofollow ugc\">Theme Builder</a> [Pro]</strong>: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/\" rel=\"nofollow ugc\">Popup Builder</a> [Pro]</strong>: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/\" rel=\"nofollow ugc\">Forms</a> [Pro]</strong>: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/\" rel=\"nofollow ugc\">WooCommerce Builder</a> [Pro]</strong>:  Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/\" rel=\"nofollow ugc\">Dynamic Content</a> [Pro]</strong>: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.</li>\n<li><strong><a href=\"https://go.elementor.com/features-page-notes/\" rel=\"nofollow ugc\">Notes</a> [Pro]</strong>: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.</li>\n<li><strong>Custom Code [Pro]</strong>: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.</li>\n<li><strong>Custom CSS [Pro]</strong>: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/\" rel=\"nofollow ugc\">Motion Effects</a> [Pro]</strong>: Add advanced motion effects to elements for a more dynamic and engaging user experience.</li>\n<li><strong>Custom Fonts &amp; Icons [Pro]</strong>: Upload and use custom fonts and icons to match your brand’s identity.</li>\n</ul>\n<h4>😍 Elementor FREE widgets</h4>\n<p>Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:</p>\n<ul>\n<li><strong>Heading</strong>. Add eye-catching headlines.</li>\n<li><strong>Image</strong>. Control the size, opacity and more.</li>\n<li><strong>Text Editor</strong>. Just like the WordPress text editor.</li>\n<li><strong>Video</strong>. Add YouTube, Vimeo, VideoPress, Dailymotion or self-hosted videos.</li>\n<li><strong>Button</strong>. Create interactive buttons.</li>\n<li><strong>Link in Bio</strong>. Build link in bio components to promote your business / services.</li>\n<li><strong>Image Box</strong>. A box with image, headline and text.</li>\n<li><strong>Testimonials</strong>. Customer testimonials.</li>\n<li><strong>Icon</strong>. Place one or more of 600+ icons available.</li>\n<li><strong>Icon Box</strong>. An icon, headline, and text with one widget.</li>\n<li><strong>Social Icons</strong>. Link to your social pages with the Facebook/X (formerly Twitter) icons.</li>\n<li><strong>Image Gallery</strong>. Display your images in a grid.</li>\n<li><strong>Image Carousel</strong>. Create rotating carousels or sliders for chosen images.</li>\n<li><strong>Icon List</strong>. Use any icon to create a bullet list.</li>\n<li><strong>Counter</strong>. Show numbers in an escalating manner.</li>\n<li><strong>Progress Bar</strong>. Include an escalating progress bar.</li>\n<li><strong>Nested Tabs</strong>. Display content in vertical or horizontal tabs.</li>\n<li><strong>Nested Accordion</strong>. Display any type of content in collapsible sections.</li>\n<li><strong>Rating</strong>. Display how many stars (or another icon) other visitors gave.</li>\n<li><strong>Alert</strong>. Include a colored alert box to draw visitor’s attention.</li>\n<li><strong>HTML</strong>. Insert code into the page.</li>\n<li><strong>Shortcode</strong>. Insert shortcodes from any plugin into the page.</li>\n<li><strong>Menu Anchor</strong>. Link any menu to this anchor.</li>\n<li><strong>Read More</strong>. Set the Read More cut-off for the excerpt in archive pages.</li>\n<li><strong>Sidebar</strong>. Add sidebars onto the page.</li>\n<li><strong>Google Maps</strong>. Embed maps into the page.</li>\n<li><strong>SoundCloud</strong>. Add SoundCloud audio bits.</li>\n<li><strong>Divider</strong>. Separate content with a designed divider.</li>\n<li><strong>Spacer</strong>. Add space between elements.</li>\n<li><strong>Text Path</strong>. Attach your text to a path.</li>\n<li><strong>And counting&#8230;</strong></li>\n</ul>\n<h3>🚀 Enhance Your Website</h3>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-performance-performance-page/\" rel=\"nofollow ugc\">High-Performing Websites</a></strong>: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.</p>\n<p><strong>Key features include:</strong></p>\n<ul>\n<li><strong>Reduced DOM Output</strong>: Streamlined HTML structure for faster rendering.</li>\n<li><strong>Improved Media File Loading</strong>: Optimized loading of images, videos, and other media assets.</li>\n<li><strong>Reduced CSS and JS Files</strong>: Minimized stylesheets and scripts individually loaded only on demand for quicker loading times.</li>\n<li><strong>Lazy Loading</strong>: Deferred loading of non-critical resources to improve initial page load speed.</li>\n<li><strong>Faster Font Loading</strong>: Efficient delivery of web fonts to enhance text rendering speed.</li>\n<li><strong>Optimized Front-End Asset Loading</strong>: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.</li>\n<li><strong>Element Caching</strong>: Cache frequently accessed design elements to reduce server response time and enhance overall performance.</li>\n</ul>\n<h3>🔥 Elementor Editor Pro Features</h3>\n<p>Create unparalleled websites while saving time, money and resources with <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a>’s full website builder. Get access to 100+ professional widgets, features, and tools.</p>\n<p><strong>Editor Pro Design Widgets:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Display your blog posts with customizable layouts and styles.</li>\n<li><strong>Share Buttons</strong>: Allow visitors to easily share your content on various social media platforms.</li>\n<li><strong>Portfolio</strong>: Showcase your work or projects with stunning portfolio layouts.</li>\n<li><strong>Slides</strong>: Create dynamic slideshows with custom animations and transitions.</li>\n<li><strong>Form</strong>: Design and customize advanced forms for user interaction and data collection.</li>\n<li><strong>Login</strong>: Add a login form or user registration module to your website.</li>\n<li><strong>Nav Menu</strong>: Customize and style your website&#8217;s navigation menu for better user experience.</li>\n<li><strong>Animated Headline</strong>: Create attention-grabbing headlines with animated effects.</li>\n<li><strong>Price Table</strong>: Display pricing plans or packages in a structured and visually appealing format.</li>\n<li><strong>Price List</strong>: Showcase a list of prices or services with customizable styling options.</li>\n<li><strong>Gallery</strong>: Create beautiful image galleries with various layout options and lightbox support.</li>\n<li><strong>Flip Box</strong>: Add interactive flip animations to highlight content or features.</li>\n<li><strong>Call to Action</strong>: Encourage user interaction and conversions with compelling call-to-action sections.</li>\n<li><strong>Media Carousel</strong>: Showcase a carousel of media files such as images or videos.</li>\n<li><strong>Testimonial Carousel</strong>: Display client testimonials in a carousel format for social proof.</li>\n<li><strong>Nested Carousel</strong>: Create nested carousels for more complex content organization.</li>\n<li><strong>Loop Carousel</strong>: Display content in a looped carousel for continuous viewing.</li>\n<li><strong>Table Of Content</strong>: Generate a table of contents for longer articles or guides to improve navigation.</li>\n<li><strong>Countdown</strong>: Add countdown timers to create urgency for promotions or events.</li>\n<li><strong>Facebook Page</strong>: Embed your Facebook page feed or content onto your website.</li>\n<li><strong>Blockquote</strong>: Highlight quotes or testimonials with stylish formatting options.</li>\n<li><strong>Template</strong>: Save and reuse design templates for consistent branding and layout.</li>\n<li><strong>Reviews</strong>: Showcase customer reviews and ratings to build trust and credibility.</li>\n<li><strong>Facebook Button</strong>: Add buttons to promote interactions with your Facebook page or content.</li>\n<li><strong>Facebook Embed</strong>: Embed Facebook posts or content onto your website.</li>\n<li><strong>Facebook Comments</strong>: Enable Facebook comments on your website&#8217;s pages or posts.</li>\n<li><strong>PayPal Button</strong>: Integrate PayPal buttons for easy online payments.</li>\n<li><strong>Stripe Button</strong>: Integrate Stripe payment buttons to facilitate secure online transactions.</li>\n<li><strong>Lottie Widget</strong>: Add Lottie animations to enhance visual appeal and engagement.</li>\n<li><strong>Code Highlight</strong>: Display code snippets with syntax highlighting for better readability.</li>\n<li><strong>Video Playlist</strong>: Create and customize playlists for video content on your website.</li>\n<li><strong>Mega Menu</strong>: Customize advanced menus for better navigation and displaying complex content.</li>\n<li><strong>Off Canvas</strong>: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.</li>\n</ol>\n<p><strong>Editor Pro Theme Widgets:</strong></p>\n<p>Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more&#8230;</p>\n<ol>\n<li><strong>Post Title</strong>: Customize the title of individual blog posts or pages.</li>\n<li><strong>Post Excerpt</strong>: Display a brief summary or teaser of your blog posts.</li>\n<li><strong>Post Content</strong>: Customize the main content area of your blog posts or pages.</li>\n<li><strong>Featured Image</strong>: Set and customize featured images for blog posts or pages.</li>\n<li><strong>Author Box</strong>: Display author information and bios on blog posts.</li>\n<li><strong>Post Comments</strong>: Customize the appearance and functionality of comments sections on your website.</li>\n<li><strong>Post Navigation</strong>: Add navigation links to adjacent posts for easy browsing.</li>\n<li><strong>Post Info</strong>: Display additional information about blog posts, such as author and date.</li>\n<li><strong>Site Logo</strong>: Upload and customize your website&#8217;s logo for branding purposes.</li>\n<li><strong>Site Title</strong>: Customize the title of your website.</li>\n<li><strong>Page Title</strong>: Customize the title of individual pages.</li>\n<li><strong>Search Bar</strong>: Add a search bar to allow users to search your website&#8217;s content.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation.</li>\n<li><strong>Sitemap</strong>: Generate a sitemap for better search engine indexing and user navigation.</li>\n<li><strong>Loop Grid</strong>: Design and customize grid layouts for blog post archives or product listings.</li>\n</ol>\n<p><strong>Editor Pro WooCommerce Widgets:</strong></p>\n<p>Design and customize a complete online shopping experience across your entire website.</p>\n<ol>\n<li><strong>Product</strong>: Display individual products with customizable layouts and styles.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation within your store.</li>\n<li><strong>Product Title</strong>: Customize the title of individual products.</li>\n<li><strong>Product Images</strong>: Set and customize images for product listings.</li>\n<li><strong>Product Price</strong>: Display the price of individual products.</li>\n<li><strong>Add To Cart</strong>: Add customizable add to cart buttons for easy purchasing.</li>\n<li><strong>Product Rating</strong>: Display ratings and reviews for products.</li>\n<li><strong>Product Stock</strong>: Display stock availability for products.</li>\n<li><strong>Product Meta</strong>: Display additional information about products, such as SKU and categories.</li>\n<li><strong>Product Content</strong>: Customize the main content area of product descriptions.</li>\n<li><strong>Short Description</strong>: Display brief summaries or teasers of products.</li>\n<li><strong>Product Data Tabs</strong>: Organize product information into tabbed sections for better organization.</li>\n<li><strong>Additional Information</strong>: Display additional details about products, such as dimensions and weight.</li>\n<li><strong>Product Related</strong>: Showcase related products to encourage additional purchases.</li>\n<li><strong>Upsells</strong>: Promote upsell products to increase average order value.</li>\n<li><strong>Products</strong>: Display a grid or list of products with customizable settings.</li>\n<li><strong>Custom Add To Cart</strong>: Customize the add to cart button for specific products.</li>\n<li><strong>WooCommerce Pages</strong>: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.</li>\n<li><strong>Product Categories</strong>: Display product categories for easy navigation within your store.</li>\n<li><strong>Menu Cart</strong>: Display a cart icon in your navigation menu for easy access to the shopping cart.</li>\n<li><strong>Cart</strong>: Customize the appearance and functionality of the shopping cart page.</li>\n<li><strong>Checkout</strong>: Customize the appearance and functionality of the checkout page.</li>\n<li><strong>My Account</strong>: Customize the appearance and functionality of the customer account area.</li>\n<li><strong>Purchase Summary</strong>: Display a summary of purchases during the checkout process.</li>\n<li><strong>WooCommerce Notices</strong>: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.</li>\n</ol>\n<p>Build professional websites with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a></strong>!</p>\n<h4>🔒 SECURITY AND COMPLIANCE</h4>\n<p>Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.</p>\n<p>We encourage ethical security research through our <a href=\"https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/\" rel=\"nofollow ugc\">Bug Bounty program</a>. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.</p>\n<p>For more information: <a href=\"https://go.elementor.com/trust-center/\" rel=\"nofollow ugc\">Trust Center</a>.</p>\n<h4>♿ Accessibility Best Practices</h4>\n<p>Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.</p>\n<h4>🌐 Translated to 63+ languages, includes RTL support</h4>\n<p>Elementor supports multiple languages, typographies, and RTL, with editor translations in <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">over 63 languages</a>.</p>\n<p>It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via <a href=\"https://translate.wordpress.org\" rel=\"nofollow ugc\">translate.wordpress.org</a>. See our guide on <a href=\"https://go.elementor.com/wp-repo-description-tab-help-center-translate/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n<h4>⏩ Use of 3rd Party Services</h4>\n<p>To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:</p>\n<ul>\n<li>Google Fonts – are loaded to add additional fonts to your website. Google’s <a href=\"https://policies.google.com/terms\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://policies.google.com/privacy\" rel=\"nofollow ugc\">Privacy Policy</a> apply.</li>\n<li>Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</li>\n</ul>\n<h4>📧 Related Products by Elementor</h4>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-io/\" rel=\"nofollow ugc\">Image Optimizer</a></strong>: Superior image compression for faster, high-quality website performance.</p>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-sm/\" rel=\"nofollow ugc\">Site Mailer</a></strong>: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.</p>\n<p><strong><a href=\"http://go.elementor.com/editor-acc-wp-repo\" rel=\"nofollow ugc\">Ally</a></strong>: Enhances website usability for individuals with disabilities. Ally is designed to help web creators make their websites more inclusive. It scans, detects, and remediate key accessibility violations, working seamlessly on all WordPress and Elementor websites.</p>\n<h4>📣 See What Our Users Have to Say</h4>\n<blockquote>\n<p>“Elementor is hands down the best page builder out there” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/\" rel=\"ugc\">Graphicvision1</a></em></p>\n<p>“An incredibly user-friendly plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/a-wonderful-experience/\" rel=\"ugc\">Hyeyoga</a></em></p>\n<p>“Easily, my most used WP plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/easily-my-most-used-wp-plugin/\" rel=\"ugc\">Xander Venske</a></em></p>\n<p>“I upgraded to the Pro version and just love this plugin!” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/love-elementor-17/\" rel=\"ugc\">Andybarn56</a></em></p>\n<p>“Excellent product with great tech support” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/excellent-product-with-great-tech-support/\" rel=\"ugc\">Martywilsonnj</a></em></p>\n</blockquote>\n<p><em><a href=\"https://wordpress.org/support/plugin/elementor/reviews/?filter=5\" rel=\"ugc\">More testimonials</a></em></p>\n<h4>🌍 Join a Global Community</h4>\n<p>Join a global community that helps each other achieve their goals.</p>\n<ul>\n<li><a href=\"https://elemn.to/discord\" rel=\"nofollow ugc\">Discord Community</a> – Chat with Web Creators, discuss specific topics in dedicated channels.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-facebook-group/\" rel=\"nofollow ugc\">Facebook Community</a> &#8211; Over 150K+ members, offering support, advice, feedback, and tutorials.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-github-repo/\" rel=\"nofollow ugc\">GitHub Community</a> &#8211; Get information about releases, request features, or report a bug.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-addons-dozens-of-elementor-addons/\" rel=\"nofollow ugc\">Elementor Addons, Themes, and Kits</a> Themes and Kits  &hellip;</li>\n</ul>\n\";s:12:\"installation\";s:1461:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>WordPress 6.5 or greater</li>\n<li>PHP version 7.4 or greater</li>\n<li>MySQL version 5.0 or greater</li>\n</ul>\n<h4>Recommended Requirements</h4>\n<ul>\n<li>PHP version 8.1 or greater</li>\n<li>MySQL version 5.6 or greater</li>\n<li>WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)</li>\n</ul>\n<p><iframe loading=\"lazy\" title=\"Installing Elementor on WordPress\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9EZ159ryFNs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe></p>\n<h4>Installation</h4>\n<ol>\n<li>Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the <code>wp-content/plugins/</code> directory of your WordPress installation.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>Go to Pages &gt; Add New</li>\n<li>Press the &#8216;Edit with Elementor&#8217; button.</li>\n<li>Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.</li>\n</ol>\n<p>For documentation and tutorials visit our <a href=\"https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme\" rel=\"nofollow ugc\">Knowledge Base</a>.</p>\n\";s:3:\"faq\";s:5070:\"\n<dt id=\"how%20do%20i%20install%20elementor%20editor%3F\">\nHow do I install Elementor Editor?\n</h4>\n<p>\n<p>To install the free version of Elementor Editor, follow the steps below:<br />\nFrom your WordPress dashboard -&gt; Go to Plugins -&gt; Click on &#8216;Add new&#8217;-&gt; In the Search field, enter Elementor and choose Elementor website builder.<br />\nPress install -&gt; After installation, click Activate.</p>\n</p>\n<dt id=\"does%20elementor%20editor%20work%20with%20all%20the%20themes%3F\">\nDoes Elementor Editor work with all the themes?\n</h4>\n<p>\n<p>Elementor Editor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor&#8217;s <a href=\"https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/\" rel=\"nofollow ugc\">Hello Theme</a>, a lightweight blank canvas, to enjoy full flexibility when using Elementor Editor, and optimize your experience.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20gutenberg%3F\">\nIs Elementor Editor compatible with Gutenberg?\n</h4>\n<p>\n<p>Elementor Editor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.</p>\n</p>\n<dt id=\"can%20i%20create%20an%20online%20store%3F\">\nCan I create an online store?\n</h4>\n<p>\n<p>Yes, with the Elementor Editor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.</p>\n</p>\n<dt id=\"does%20it%20work%20with%20other%20wordpress%20plugins%3F\">\nDoes it work with other WordPress plugins?\n</h4>\n<p>\n<p>It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor Editor.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20code%3F\">\nDo I need to know how to code?\n</h4>\n<p>\n<p>No! Elementor Editor provides you with all the widgets and features that you need to build a professional website without using code.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20design%3F\">\nDo I need to know how to design?\n</h4>\n<p>\n<p>No, you can choose between professionally designed kits and templates that fit to every industry and have all you need to create your own professional website.</p>\n</p>\n<dt id=\"will%20elementor%20editor%20slow%20down%20my%20website%3F\">\nWill Elementor Editor slow down my website?\n</h4>\n<p>\n<p>As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of the Editor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.</p>\n</p>\n<dt id=\"is%20my%20site%20secure%20with%20elementor%20editor%3F\">\nIs my site secure with Elementor Editor?\n</h4>\n<p>\n<p>The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.</p>\n<p>There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.</p>\n</p>\n<dt id=\"can%20i%20buy%20templates%20separately%3F\">\nCan I buy templates separately?\n</h4>\n<p>\n<p>Of course, you can use any template that supports Elementor Editor.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20post%20and%20custom%20post%20types%3F\">\nIs Elementor Editor compatible with Post and Custom Post Types?\n</h4>\n<p>\n<p>Of course! You can set which post types will enable Elementor in the settings page.</p>\n</p>\n<dt id=\"what%20is%20the%20difference%20between%20elementor%27s%20free%20editor%20plugin%20and%20elementor%20editor%20pro%3F\">\nWhat is the difference between Elementor&#8217;s free Editor plugin and Elementor Editor Pro?\n</h4>\n<p>\n<p>Elementor Editor’s Free version allows you to explore our revolutionary drag &amp; drop live editor, basic widgets and templates. Elementor Editor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.</p>\n</p>\n<dt id=\"how%20can%20i%20become%20a%20contributor%3F\">\nHow can I become a Contributor?\n</h4>\n<p>\n<p>If you want to contribute, go to our <a href=\"https://github.com/elementor/elementor\" rel=\"nofollow ugc\">Elementor GitHub Repository</a> and see where you can help.<br />\nYou can also add a new language via <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. We’ve built a short guide explaining <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:1590:\"<h4>3.35.0 &#8211; 2026-02-02</h4>\n<ul>\n<li>New: Introducing Components &#8211; reusable layout building blocks with global sync and per-instance content overrides &#8211; Editor V4</li>\n<li>New: Introducing Inline Editing &#8211; edit Atomic Heading and Paragraph text directly on the canvas &#8211; Editor V4</li>\n<li>New: Introducing a contextual formatting toolbar for inline text editing, including links and common text styles &#8211; Editor V4</li>\n<li>Tweak: Version 4 status updated to Beta and production-ready &#8211; Editor V4</li>\n<li>Tweak: Children perspective controls available only for relevant parent elements &#8211; Editor V4</li>\n<li>Tweak: <code>:hover</code> styling automatically applies to <code>:focus-visible</code> for improved accessibility &#8211; Editor V4</li>\n<li>Tweak: Dynamic tags support added to color picker controls &#8211; Editor V4</li>\n<li>Tweak: Link and Button accessibility improvements in Dynamic Tags &#8211; Editor V4</li>\n<li>Tweak: Nested Accordion optimizations with Grid in Chrome browser</li>\n<li>Fix: Size link-unlink operations not applying consistently &#8211; Editor V4</li>\n<li>Fix: Div Block and Flexbox base styles overriding user settings when viewed from another document &#8211; Editor V4</li>\n<li>Fix: Flex and Div blocks lose selection when deleting an assigned class via the Class Manager &#8211; Editor V4</li>\n<li>Fix: Container handles not visible when &#8220;Overflow: Hidden&#8221; is enabled</li>\n</ul>\n<p><a href=\"https://go.elementor.com/full-changelog/\" rel=\"nofollow ugc\">See changelog for all versions.</a></p>\n\";s:11:\"screenshots\";s:3162:\"<ol><li><a href=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\" alt=\"&lt;strong&gt;Visual Drag and Drop Editor&lt;/strong&gt; - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\"></a><p><strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\" alt=\"&lt;strong&gt;Full Design System&lt;/strong&gt; - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\"></a><p><strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\" alt=\"&lt;strong&gt;Responsive Design&lt;/strong&gt; Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\"></a><p><strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\" alt=\"&lt;strong&gt;Kits and Templates&lt;/strong&gt; - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\"></a><p><strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\" alt=\"&lt;strong&gt;Nested Elements&lt;/strong&gt; Leverage Elementor Editor&#039;s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\"></a><p><strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\" alt=\"&lt;strong&gt;Motion Effects&lt;/strong&gt; - Add entrance animations and transitions to any element in your website to captivate visitors.\"></a><p><strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.</p></li></ol>\";s:7:\"reviews\";s:16314:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Wonderful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/keyascii/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8aede766e37ca20411e18ce027e1b1cb5e9eb58cefe14f7a980339726551b0db?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8aede766e37ca20411e18ce027e1b1cb5e9eb58cefe14f7a980339726551b0db?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/keyascii/\" class=\"reviewer-name\">keyascii</a> on <span class=\"review-date\">February 3, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Does not work. Simply. If I create a new template, it is not managed as a popup</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">MAJ sur MAJ</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/monastromag/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7963eea045273490f88ed9b8317cb5fa727a25d324b835fbda1b155050d233cb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7963eea045273490f88ed9b8317cb5fa727a25d324b835fbda1b155050d233cb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/monastromag/\" class=\"reviewer-name\">monastromag</a> on <span class=\"review-date\">February 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Depuis quelques temps ont est submergé de mise à jours mais dans 90% du temps c\'est pour une V4 qui est toujours en phase béta. Je ne suis pas contre les évolutions mais ça commence a faire long cette version béta. Déçu par ce coté répétitif qui nous oblige a réaliser une action qui à l\'heure actuelle ne m\'apporte rien du tout. Passer en alpha et je ferai les mise à jours avec grand plaisir.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Truly mixed feelings - it&#039;s good for beginners mostly</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/yb1313/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a96b098785d2570e67c0361d976338fc1e616938057fde35a7dc58857bec9ca2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a96b098785d2570e67c0361d976338fc1e616938057fde35a7dc58857bec9ca2?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/yb1313/\" class=\"reviewer-name\">yb1313</a> on <span class=\"review-date\">February 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I\'m thankful for Elementor\'s enabling website-building with simple &amp; intuitive blocks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But not for the overly expensive Pro version, and the occasional bugs. I wish I had just used the WP page builder/editor instead for some sites without relying so much on a single plugin. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hopefully this review will be of help and go up with time. </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\">ТОП</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/k7news/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/db97903e020213c50481f5e8a4e896cedab52a1840a3f5591e317bd2f82de28f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/db97903e020213c50481f5e8a4e896cedab52a1840a3f5591e317bd2f82de28f?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/k7news/\" class=\"reviewer-name\">K7NEWS-OFFICE <small>(k7news)</small></a> on <span class=\"review-date\">January 30, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>ТОП</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</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/spasso888/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9c9cfd7c1d8a36d48e44e26285afae83616a05b38537bfdeb92b151d6a6df8c9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9c9cfd7c1d8a36d48e44e26285afae83616a05b38537bfdeb92b151d6a6df8c9?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/spasso888/\" class=\"reviewer-name\">Josh S <small>(spasso888)</small></a> on <span class=\"review-date\">January 27, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Every other page builder makes it easy to add a column and a row. This plugin, if we can call it that is unintutive. The work flow is clunky. Making a 2 column layout in anything else is easy... this takes the cake for the worst page builder. Having a learning curve or not this is still the worst page builder with the most bloat!</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\">très intuitif et performant</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/hugues7/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2b7ad77f51afe84339bdc09770ca157e630afe689ea2b523e1de266a1fcfdf77?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2b7ad77f51afe84339bdc09770ca157e630afe689ea2b523e1de266a1fcfdf77?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/hugues7/\" class=\"reviewer-name\">hugues7</a> on <span class=\"review-date\">January 26, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor est très intuitif , et très performant.</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\">So tiring!</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/lala9/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/247757b1ed3f2791865433bf7bba562a85b9ea98b9f307a6d74556d08df16d78?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/247757b1ed3f2791865433bf7bba562a85b9ea98b9f307a6d74556d08df16d78?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/lala9/\" class=\"reviewer-name\">lala9</a> on <span class=\"review-date\">January 25, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Totally unnecessary changes just make it all so tiring and stressful that I am decided we are going to hire a techie to convert my site to blocks only.  This is too much.  And now, everywhere I look I get alerts and notifications warning me I only have 1 month to renew my pro license. So intrusive!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Far too much unnecessary fluff that just slows down our site.</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\">Too clever</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/ra1953watts/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1df5ec68deedb39a57eb3ee0e7ba50bffce3c4f4fc5e17dae11a23f55154fbd7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1df5ec68deedb39a57eb3ee0e7ba50bffce3c4f4fc5e17dae11a23f55154fbd7?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/ra1953watts/\" class=\"reviewer-name\">Roger Watts <small>(ra1953watts)</small></a> on <span class=\"review-date\">January 23, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor is now in a competitive market place; it\'s all-in-one versatility is being overtaken and overshadowed by its quest to be all things. I feel I am getting sucked in to a vortex...</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\">i love it</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/piotrgross/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4f1662c5b12f4bd2477e3fa46a233ebca6152966afcb216f4ea0b27d5c13a3b5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4f1662c5b12f4bd2477e3fa46a233ebca6152966afcb216f4ea0b27d5c13a3b5?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/piotrgross/\" class=\"reviewer-name\">piotrgross</a> on <span class=\"review-date\">January 23, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I\'ve been using Elementor for years. It\'s never let me down.</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\">Mixes Formatting and Content</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/kloddant/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ea6d0543003811bf39dfef74a31f15287a49823fc40fb5011edcc3c0d71614b7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ea6d0543003811bf39dfef74a31f15287a49823fc40fb5011edcc3c0d71614b7?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/kloddant/\" class=\"reviewer-name\">kloddant</a> on <span class=\"review-date\">January 21, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>This plugin is always super annoying when I find it installed on a website, because it mixes formatting and content, which is a bad thing to do, because then the plugin can never be uninstalled if there is a problem, the syntax that is used for formatting cannot be switched, the formatting is not under version control, and the formatting is not templated but instead needs to be replicated on each post.  Formatting belongs in the theme.  Content belongs in the database.  They should not be mixed.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:145:\"The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.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:400:{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:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder &#8211; More Than Just a Page Builder\";}}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(152, 'recently_activated', 'a:0:{}', 'off'),
(180, 'elementor_pro_version', '3.34.4', 'auto'),
(181, 'elementor_pro_install_history', 'a:2:{s:6:\"3.25.4\";i:1769927379;s:6:\"3.34.4\";i:1769949790;}', 'auto'),
(158, 'elementor_active_kit', '6', 'auto'),
(159, 'elementor_font_display', 'swap', 'auto'),
(162, 'elementor_landing_pages_activation', '0', 'auto'),
(163, 'elementor_checklist', '{\"last_opened_timestamp\":null,\"first_closed_checklist_in_editor\":true,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header_pro\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"should_open_in_editor\":false}', 'auto'),
(164, 'elementor_version', '3.34.4', 'auto'),
(165, 'elementor_install_history', 'a:1:{s:6:\"3.34.4\";i:1769927300;}', 'auto'),
(166, 'elementor_events_db_version', '1.0.0', 'off'),
(168, '_elementor_ab_testing_data', 'a:2:{s:7:\"timeout\";i:1770061950;s:5:\"value\";s:273:\"[{\"coreOnboarding\":{\"emphasizeConnectBenefits101\":false,\"embedConnectInOnboarding102\":false,\"onboardingStartsWithLogin103\":false,\"offerThemeChoicesHelloBiz201\":true,\"emphasizeThemeValueAudience202\":false,\"updateCopyVisuals401\":false,\"reduceHierarchyBlankOption402\":false}}]\";}', 'off'),
(169, 'elementor_onboarded', '1', 'auto'),
(170, '_elementor_installed_time', '1769927308', 'auto'),
(171, 'elementor_connect_site_key', 'db32e1c945cedb3f4ec326a9a0e42e6e', 'auto'),
(172, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:76:\"Introducing Elementor 3.32: Transitions, Transform, Size Variables, and More\";s:7:\"excerpt\";s:250:\"Elementor 3.32 is here, accelerating Editor V4 Alpha with transform controls and layered transitions, system-wide Size Variables and streamlined class management. This release empowers you to build more consistent, dynamic, and professional websites.\";s:7:\"created\";i:1759243152;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:138:\"https://elementor.com/blog/elementor-332-v4-transform-transitions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:70:\"Introducing Elementor 3.31: New Editor V4 Variables, Filters, and More\";s:7:\"excerpt\";s:294:\"Elementor 3.31 is here, pushing Editor V4 forward with powerful design system enhancements and modern visual styling tools. From Variables and Filters to smarter editing workflows and semantic markup, this version makes it easier than ever to design beautiful, performant, and accessible sites.\";s:7:\"created\";i:1755094220;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:140:\"https://elementor.com/blog/elementor-331-v4-alpha-variables-filters/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(406, 'current_theme', 'astra child', 'auto'),
(407, '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:1769928983;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'),
(177, 'finished_updating_comment_type', '1', 'auto'),
(182, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(183, '_elementor_pro_installed_time', '1769927379', 'auto'),
(184, 'elementor_submissions_db_version', '5', 'auto'),
(1001, 'litespeed.conf.img_optm-auto', '', 'auto'),
(1000, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(999, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(998, 'litespeed.conf.media-vpi', '', 'auto'),
(997, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(996, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(995, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(994, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(993, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(992, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(991, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(990, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(989, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(988, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(987, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(986, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(985, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(984, 'litespeed.conf.media-lqip', '', 'auto'),
(983, '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'),
(982, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(981, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(980, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(979, 'litespeed.conf.media-lazy', '', 'auto'),
(978, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(977, 'litespeed.conf.optm-localize', '', 'auto'),
(976, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(975, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(974, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(973, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(972, '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'),
(971, 'litespeed.conf.object-pswd', '', 'auto'),
(970, 'litespeed.conf.object-user', '', 'auto'),
(969, 'litespeed.conf.object-db_id', '0', 'auto'),
(968, 'litespeed.conf.object-transients', '1', 'auto'),
(967, 'litespeed.conf.object-admin', '1', 'auto'),
(966, 'litespeed.conf.object-persistent', '1', 'auto'),
(965, 'litespeed.conf.object-life', '360', 'auto'),
(964, 'litespeed.conf.object-port', '11211', 'auto'),
(963, 'litespeed.conf.object-host', 'localhost', 'auto'),
(962, 'litespeed.conf.object-kind', '', 'auto'),
(961, 'litespeed.conf.object', '', 'auto'),
(960, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(959, 'litespeed.conf.optm-exc', '[]', 'auto'),
(958, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(957, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(956, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(955, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(954, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(953, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(952, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(951, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(950, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(949, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(948, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(947, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(946, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(945, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(944, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(943, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(942, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(941, 'litespeed.conf.optm-css_async', '', 'auto'),
(940, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(939, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(938, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(936, 'litespeed.conf.optm-html_min', '', 'auto'),
(937, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(935, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(934, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(933, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(932, 'litespeed.conf.optm-js_comb', '', 'auto'),
(931, 'litespeed.conf.optm-js_min', '', 'auto'),
(930, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(929, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(928, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(927, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(926, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(925, 'litespeed.conf.optm-ucss', '', 'auto'),
(921, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(922, 'litespeed.conf.optm-css_min', '', 'auto'),
(923, 'litespeed.conf.optm-css_comb', '', 'auto'),
(924, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(919, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(920, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(918, 'litespeed.conf.debug-exc', '[]', 'auto'),
(917, 'litespeed.conf.debug-inc', '[]', 'auto'),
(916, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(914, 'litespeed.conf.debug-level', '', 'auto'),
(915, 'litespeed.conf.debug-filesize', '3', 'auto'),
(913, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(912, 'litespeed.conf.debug', '0', 'auto'),
(911, 'litespeed.conf.debug-disable_all', '', 'auto'),
(908, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(909, 'litespeed.conf.util-instant_click', '', 'auto'),
(910, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(907, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(906, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(905, 'litespeed.conf.esi', '', 'auto'),
(904, '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'),
(903, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(902, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(901, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(900, 'litespeed.conf.purge-post_t', '1', 'auto'),
(899, 'litespeed.conf.purge-post_d', '', 'auto'),
(898, 'litespeed.conf.purge-post_m', '1', 'auto'),
(897, 'litespeed.conf.purge-post_y', '', 'auto'),
(896, 'litespeed.conf.purge-post_a', '1', 'auto'),
(895, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(894, 'litespeed.conf.purge-post_p', '1', 'auto'),
(893, 'litespeed.conf.purge-post_h', '1', 'auto'),
(892, 'litespeed.conf.purge-post_f', '1', 'auto'),
(888, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(889, 'litespeed.conf.purge-upgrade', '', 'auto'),
(890, 'litespeed.conf.purge-stale', '', 'auto'),
(891, 'litespeed.conf.purge-post_all', '', 'auto'),
(887, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(886, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(885, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(884, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(883, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(882, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(881, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(880, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(879, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(878, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(876, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(877, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(875, 'litespeed.conf.cache-exc', '[]', 'auto'),
(874, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(873, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(872, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(868, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(869, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(870, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(871, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(867, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(866, 'litespeed.conf.cache-browser', '', 'auto'),
(863, 'litespeed.conf.cache-page_login', '1', 'auto'),
(864, 'litespeed.conf.cache-mobile', '', 'auto'),
(865, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(1257, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1770225670;}', 'auto'),
(862, 'litespeed.conf.cache-rest', '1', 'auto'),
(859, 'litespeed.conf.cache', '1', 'auto'),
(860, 'litespeed.conf.cache-priv', '1', 'auto'),
(861, 'litespeed.conf.cache-commenter', '1', 'auto'),
(858, 'litespeed.conf.news', '1', 'auto'),
(378, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1770225660;s:16:\"get_license_data\";i:1770224780;}', 'auto'),
(421, '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'),
(1003, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(551, 'wp_notes_notify', '1', 'on'),
(428, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(429, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(430, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(494, 'WPLANG', '', 'auto'),
(495, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(504, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1777705208', 'off'),
(505, '_transient__elementor_ab_test_plg_site_mailer_submission', '1', 'off'),
(1056, 'litespeed.data.upgrading', '-1', 'auto'),
(1057, 'litespeed.admin_display.messages', '-1', 'auto'),
(1263, 'litespeed.cloud._summary', '{\"news.utime\":1770225673,\"curr_request.news\":0,\"last_request.news\":1770225673}', 'auto'),
(1264, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(1265, '_transient_bmi_latest_size_plugins', '104069605', 'on'),
(1266, '_transient_bmi_latest_size_uploads', '11204790', 'on'),
(1267, '_transient_bmi_latest_size_themes', '38840131', 'on'),
(509, 'elementor_tracker_last_send', '1769929247', 'auto'),
(510, '_transient_timeout_elementor_rollback_versions_3.34.4', '1770534048', 'off'),
(511, '_transient_elementor_rollback_versions_3.34.4', 'a:30:{i:0;s:6:\"3.34.3\";i:1;s:6:\"3.34.2\";i:2;s:6:\"3.34.1\";i:3;s:6:\"3.34.0\";i:4;s:6:\"3.33.6\";i:5;s:6:\"3.33.5\";i:6;s:6:\"3.33.4\";i:7;s:6:\"3.33.3\";i:8;s:6:\"3.33.2\";i:9;s:6:\"3.33.1\";i:10;s:6:\"3.33.0\";i:11;s:6:\"3.32.5\";i:12;s:6:\"3.32.4\";i:13;s:6:\"3.32.3\";i:14;s:6:\"3.32.2\";i:15;s:6:\"3.32.1\";i:16;s:6:\"3.32.0\";i:17;s:6:\"3.31.5\";i:18;s:6:\"3.31.4\";i:19;s:6:\"3.31.3\";i:20;s:6:\"3.31.2\";i:21;s:6:\"3.31.1\";i:22;s:6:\"3.31.0\";i:23;s:6:\"3.30.4\";i:24;s:6:\"3.30.3\";i:25;s:6:\"3.30.2\";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'),
(512, '_transient_timeout_elementor_pro_rollback_versions_3.25.4', '1770534048', 'off'),
(513, '_transient_elementor_pro_rollback_versions_3.25.4', 'a:30:{i:0;s:6:\"3.34.3\";i:1;s:6:\"3.34.2\";i:2;s:6:\"3.34.1\";i:3;s:6:\"3.34.0\";i:4;s:6:\"3.33.2\";i:5;s:6:\"3.33.1\";i:6;s:6:\"3.33.0\";i:7;s:6:\"3.32.3\";i:8;s:6:\"3.32.2\";i:9;s:6:\"3.32.1\";i:10;s:6:\"3.32.0\";i:11;s:6:\"3.31.3\";i:12;s:6:\"3.31.2\";i:13;s:6:\"3.31.0\";i:14;s:6:\"3.30.1\";i:15;s:6:\"3.30.0\";i:16;s:6:\"3.29.2\";i:17;s:6:\"3.29.1\";i:18;s:6:\"3.29.0\";i:19;s:6:\"3.28.4\";i:20;s:6:\"3.28.3\";i:21;s:6:\"3.28.2\";i:22;s:6:\"3.28.1\";i:23;s:6:\"3.28.0\";i:24;s:6:\"3.27.7\";i:25;s:6:\"3.27.6\";i:26;s:6:\"3.27.5\";i:27;s:6:\"3.27.4\";i:28;s:6:\"3.27.3\";i:29;s:6:\"3.27.2\";}', 'off'),
(514, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(515, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1770311181;s:5:\"value\";s:2845:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(516, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1770267981;s:5:\"value\";s:2845:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(517, 'elementor_notes_db_version', '5', 'auto'),
(579, 'can_compress_scripts', '1', 'on'),
(575, 'elementor_library_category_children', 'a:0:{}', 'auto');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(574, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(522, 'elementor_controls_usage', 'a:4:{s:9:\"container\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:4;s:14:\"flex_direction\";i:3;s:5:\"width\";i:2;s:8:\"flex_gap\";i:2;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:7:\"wp-page\";a:10:{s:7:\"heading\";a:2:{s:5:\"count\";i:31;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:31;s:11:\"header_size\";i:21;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:22;s:21:\"typography_typography\";i:22;s:25:\"typography_text_transform\";i:11;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:31;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:13;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:20;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:11;s:8:\"_padding\";i:11;s:21:\"_offset_orientation_v\";i:11;s:13:\"_offset_y_end\";i:11;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:20;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:15;s:4:\"link\";i:15;s:13:\"selected_icon\";i:10;s:10:\"icon_align\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:12;s:16:\"background_color\";i:9;s:12:\"text_padding\";i:9;s:21:\"typography_typography\";i:11;s:26:\"typography_text_decoration\";i:9;s:12:\"align_tablet\";i:2;s:25:\"typography_text_transform\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:15;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:71;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:41;s:5:\"width\";i:32;s:14:\"flex_direction\";i:49;s:20:\"flex_justify_content\";i:10;s:8:\"flex_gap\";i:14;s:9:\"flex_wrap\";i:3;s:10:\"min_height\";i:2;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:71;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:30;s:16:\"background_color\";i:22;s:28:\"background_slideshow_gallery\";i:2;s:36:\"background_slideshow_background_size\";i:2;s:40:\"background_slideshow_background_position\";i:2;s:30:\"background_slideshow_ken_burns\";i:2;s:21:\"background_color_stop\";i:4;s:18:\"background_color_b\";i:5;s:23:\"background_color_b_stop\";i:2;}s:26:\"section_background_overlay\";a:11:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:25:\"background_overlay_repeat\";i:2;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:4;s:26:\"background_overlay_color_b\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:23;s:13:\"border_border\";i:15;s:12:\"border_width\";i:15;s:12:\"border_color\";i:16;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:71;}s:14:\"section_layout\";a:3:{s:6:\"margin\";i:12;s:7:\"padding\";i:52;s:7:\"z_index\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:37;s:18:\"animation_duration\";i:37;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:5;s:12:\"hide_desktop\";i:5;s:17:\"hide_tablet_extra\";i:5;s:11:\"hide_tablet\";i:5;s:17:\"hide_mobile_extra\";i:5;s:11:\"hide_mobile\";i:5;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:24;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:24;s:10:\"image_size\";i:24;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:24;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:24;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:4;s:11:\"hide_mobile\";i:4;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:20;s:10:\"title_text\";i:20;s:16:\"description_text\";i:20;s:10:\"title_size\";i:20;s:4:\"view\";i:18;s:4:\"link\";i:9;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:5:{s:8:\"position\";i:11;s:18:\"title_bottom_space\";i:20;s:15:\"position_mobile\";i:11;s:10:\"icon_space\";i:9;s:26:\"content_vertical_alignment\";i:9;}s:18:\"section_style_icon\";a:4:{s:9:\"icon_size\";i:18;s:12:\"icon_padding\";i:18;s:13:\"primary_color\";i:3;s:15:\"secondary_color\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:20;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:14:\"_border_radius\";i:2;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:3;s:11:\"form_fields\";i:3;s:10:\"input_size\";i:3;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:3;s:11:\"button_text\";i:3;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:3;s:13:\"email_subject\";i:3;s:10:\"email_from\";i:3;s:14:\"email_reply_to\";i:3;s:13:\"form_metadata\";i:3;}s:15:\"section_email_2\";a:1:{s:15:\"email_subject_2\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:3;s:7:\"row_gap\";i:3;s:13:\"label_spacing\";i:3;s:27:\"label_typography_typography\";i:3;s:26:\"label_typography_font_size\";i:3;s:28:\"label_typography_font_weight\";i:3;}s:19:\"section_field_style\";a:2:{s:27:\"field_typography_typography\";i:3;s:18:\"field_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:5;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:4;s:24:\"icon_self_vertical_align\";i:5;s:20:\"icon_vertical_offset\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:20:\"pp-info-box-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:4:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:6:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:21:\"info_box_border_color\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}s:27:\"section_info_box_icon_style\";a:3:{s:18:\"icon_border_radius\";i:1;s:11:\"icon_margin\";i:1;s:14:\"icon_img_width\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"nested-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"section_slides\";a:3:{s:14:\"carousel_items\";i:2;s:14:\"slides_to_show\";i:2;s:27:\"slides_to_show_mobile_extra\";i:2;}s:25:\"section_carousel_settings\";a:2:{s:12:\"offset_sides\";i:2;s:12:\"offset_width\";i:2;}s:27:\"section_carousel_pagination\";a:1:{s:10:\"pagination\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:1:{s:20:\"image_spacing_custom\";i:2;}s:25:\"section_design_navigation\";a:4:{s:35:\"arrows_normal_background_background\";i:2;s:20:\"arrows_border_radius\";i:2;s:14:\"arrows_padding\";i:2;s:15:\"arrows_position\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}}s:6:\"footer\";a:6:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:1:{s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"header\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:4;s:20:\"flex_justify_content\";i:2;s:8:\"flex_gap\";i:1;s:11:\"boxed_width\";i:1;s:16:\"flex_align_items\";i:1;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:5:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;s:16:\"_flex_align_self\";i:1;s:7:\"z_index\";i:1;s:20:\"e_display_conditions\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:9:\"menu_type\";i:1;s:10:\"full_width\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:4:{s:23:\"section_style_main_menu\";a:1:{s:29:\"pointer_color_menu_item_hover\";i:1;}s:22:\"section_style_dropdown\";a:2:{s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_width\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}s:16:\"style_typography\";a:4:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:4:\"link\";i:1;s:10:\"title_size\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:1;s:26:\"content_vertical_alignment\";i:1;s:10:\"text_align\";i:1;}s:21:\"section_style_content\";a:3:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}}', 'off'),
(1002, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(857, 'litespeed.conf.guest_optm', '', 'auto'),
(395, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1769939686;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'),
(856, 'litespeed.conf.guest', '', 'auto'),
(855, 'litespeed.conf.server_ip', '', 'auto'),
(854, 'litespeed.conf.auto_upgrade', '', 'auto'),
(853, 'litespeed.conf.api_key', '', 'auto'),
(851, 'litespeed.conf._version', '7.7', 'auto'),
(852, 'litespeed.conf.hash', 'YudVNDv96zeGt7t93IwU0bwV4Jzqk5Ny', 'auto'),
(387, 'elementor_one_client_id', '77030cda-5fca-41c4-ac84-d7728bb8c93f', 'off'),
(388, 'elementor_one_client_secret', '2xs5Ea8Un_SEmEaCc-MCVp3HNB', 'off'),
(389, 'elementor_one_home_url', 'aHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGg=', 'off'),
(408, 'theme_switched', '', 'auto'),
(398, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(399, 'pp_license_status', 'valid', 'auto'),
(525, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:\"footer\";a:1:{i:307;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:86;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(529, '_elementor_element_cache_unique_id', '3d9e49704553b5e1e3e5f319df60cda0', 'auto'),
(531, '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:\"#c46101\";i:1;s:7:\"#ffc204\";i:2;s:7:\"#00245e\";i:3;s:7:\"#464647\";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'),
(539, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(537, 'astra_partials_config_cache', 'a:2:{s:8:\"settings\";a:1114:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";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:\"#c46101\";i:1;s:7:\"#ffc204\";i:2;s:7:\"#00245e\";i:3;s:7:\"#464647\";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:\"#c46101\";i:1;s:7:\"#ffc204\";i:2;s:7:\"#00245e\";i:3;s:7:\"#464647\";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:25:\"\'AR One Sans\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.65\";s:16:\"line-height-unit\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[ast-headings-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-headings-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:19:\"\'Rubik\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:11:\"300,600,900\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h1-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h2-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h3-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h4-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h5-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h6-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[wp-blocks-ui]\";a:4:{s:7:\"default\";s:7:\"comfort\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[wp-blocks-global-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[wp-blocks-ui-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:33:\"comments-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[comments-single-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-comments-area]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[comments-box-placement]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[comments-box-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[comment-form-position]\";a:4:{s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[ast-sub-section-comments-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";i:2;s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[ast-sub-section-comments-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:61;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:41;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:33;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: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-h4]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:25;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:21;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[single-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[single-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[page-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[page-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"ast-dynamic-single-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-single-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:43:\"ast-dynamic-single-e-floating-buttons-title\";i:1;s:42:\"ast-dynamic-single-e-floating-buttons-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:92:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:95:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:96:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:101:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:79:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-e-floating-buttons-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-single-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-dynamic-single-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"ast-dynamic-single-e-floating-buttons-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:57:\"astra-settings[single-posttype-e-floating-buttons-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"narrow-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-sidebar-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-post-title\";i:1;s:28:\"ast-dynamic-single-post-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-post-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-post-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-post-metadata]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-post-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-post-elements-gap]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[ast-dynamic-single-post-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-page-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-content-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-page-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-page-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-page-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-page-image\";i:1;s:29:\"ast-dynamic-single-page-title\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-page-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-page-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-page-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-page-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-page-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-page-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-page-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-page-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-page-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-page-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-page-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:76:\"astra-settings[ast-dynamic-single-page-disable-structure-meta-on-front-page]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"ast-dynamic-single-page-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-single-page-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"astra-settings[archive-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[archive-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"ast-dynamic-archive-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-archive-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:44:\"ast-dynamic-archive-e-floating-buttons-title\";i:1;s:50:\"ast-dynamic-archive-e-floating-buttons-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:84:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:70:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[archive-post-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"ast-dynamic-archive-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-archive-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[ast-dynamic-archive-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-archive-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-archive-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:30:\"ast-dynamic-archive-post-title\";i:1;s:36:\"ast-dynamic-archive-post-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-post-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-archive-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-archive-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-archive-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[ast-dynamic-archive-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-on-blog]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-search-page-title-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-search-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-search-page-title-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[section-search-page-title-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-search-page-title-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:31:\"section-search-page-title-title\";i:1;s:36:\"section-search-page-title-breadcrumb\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-custom-title]\";a:4:{s:7:\"default\";s:19:\"Search Results for:\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[section-search-page-title-found-custom-description]\";a:4:{s:7:\"default\";s:44:\"Here are the search results for your search.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-not-found-custom-description]\";a:4:{s:7:\"default\";s:85:\"Sorry, but we could not find anything related to your search terms. Please try again.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-search-page-title-horizontal-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[section-search-page-title-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[section-search-page-title-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[section-search-page-title-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[section-search-page-title-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:59:\"astra-settings[section-search-page-title-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:57:\"astra-settings[section-search-page-title-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:32;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-search-page-title-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[ast-search-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[ast-search-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-results-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-search-results-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-search-live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-search-live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"related-posts-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-image-ratio-type]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:55:\"astra-settings[related-posts-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:60:\"astra-settings[related-posts-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[related-posts-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-category-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-tag-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-box-placement]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-outside-location]\";a:4:{s:7:\"default\";s:5:\"above\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.5\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"26\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[ast-sub-section-related-posts-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";d:2.5;s:5:\"right\";d:2.5;s:6:\"bottom\";d:2.5;s:4:\"left\";d:2.5;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[ast-sub-section-related-posts-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[transparent-header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hba-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hbb-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-header-disable-404-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-disable-search-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-disable-archive-pages]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-buttons-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-button-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[breadcrumb-position-none-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:49:\"astra-settings[breadcrumb-disable-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[breadcrumb-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-color-section-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[scroll-to-top-enable]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[scroll-to-top-icon-position]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[scroll-to-top-icon-size]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[scroll-on-top-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[scroll-on-top-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[scroll-to-top-icon-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[scroll-to-top-icon-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:42:\"astra-settings[scroll-to-top-icon-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:45:\"astra-settings[scroll-to-top-icon-h-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"section-scroll-to-top-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[enable-scroll-to-top-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[secondary-button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[secondary-font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[secondary-font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";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:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[off-canvas-move-body]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[off-canvas-move-body-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:42:\"https://mrarif.me/royalhealth/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:26:\"var(--ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:37:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(796, 'pp_elementor_modules', 'a:62:{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:14:\"pp-modal-popup\";i:40;s:20:\"pp-offcanvas-content\";i:41;s:14:\"pp-onepage-nav\";i:42;s:8:\"pp-posts\";i:43;s:13:\"pp-price-menu\";i:44;s:16:\"pp-pricing-table\";i:45;s:12:\"pp-promo-box\";i:46;s:15:\"pp-random-image\";i:47;s:9:\"pp-recipe\";i:48;s:20:\"pp-registration-form\";i:49;s:13:\"pp-review-box\";i:50;s:11:\"pp-showcase\";i:51;s:10:\"pp-sitemap\";i:52;s:8:\"pp-table\";i:53;s:20:\"pp-table-of-contents\";i:54;s:14:\"pp-team-member\";i:55;s:23:\"pp-team-member-carousel\";i:56;s:15:\"pp-testimonials\";i:57;s:14:\"pp-tiled-posts\";i:58;s:11:\"pp-timeline\";i:59;s:9:\"pp-toggle\";i:60;s:8:\"pp-video\";i:61;s:16:\"pp-video-gallery\";}', 'auto'),
(1262, 'litespeed.gui._summary', '{\"new_version\":1770830473,\"score\":1771435273}', 'auto');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1249, 'elementor_pro_remote_info_api_data_3.34.4', 'a:2:{s:7:\"timeout\";i:1770268861;s:5:\"value\";s:251834:\"{\"stable_version\":\"3.35.0\",\"last_updated\":\"2026-02-02 09:47:18\",\"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:235700:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.35.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcwMjI1NjYwLCJleHAiOjE3NzAzMTIwNjB9.Gx68duuSlrVzV23Q6jcZuBbinJ67BryRftZokRXt3k8\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcwMjI1NjYwLCJleHAiOjE3NzAzMTIwNjB9.Gx68duuSlrVzV23Q6jcZuBbinJ67BryRftZokRXt3k8\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJpYXQiOjE3NzAyMjU2NjAsImV4cCI6MTc3MDMxMjA2MH0.HuRO40jM9fmUvBPTlWH1EmqTrl2nyN-lE0fmqc-AKt4\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJpYXQiOjE3NzAyMjU2NjAsImV4cCI6MTc3MDMxMjA2MH0.HuRO40jM9fmUvBPTlWH1EmqTrl2nyN-lE0fmqc-AKt4\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpr_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(561, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"arifwebsols@gmail.com\";s:7:\"version\";s:5:\"6.9.1\";s:9:\"timestamp\";i:1770224773;}', 'off'),
(1274, '_site_transient_timeout_wp_theme_files_patterns-dfd14ea3a2009646ac12f7abae344617', '1770228382', 'off'),
(1275, '_site_transient_wp_theme_files_patterns-dfd14ea3a2009646ac12f7abae344617', 'a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}', 'off'),
(1276, '_site_transient_timeout_wp_theme_files_patterns-199e7798905f15612566bf921c248403', '1770228382', 'off'),
(1277, '_site_transient_wp_theme_files_patterns-199e7798905f15612566bf921c248403', 'a:2:{s:7:\"version\";s:6:\"4.12.1\";s:8:\"patterns\";a:0:{}}', 'off'),
(1215, '_site_transient_timeout_theme_roots', '1770226569', 'off'),
(1216, '_site_transient_theme_roots', 'a:5:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}', 'off'),
(1006, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(1007, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(1005, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(1008, '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'),
(1009, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(1010, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(1011, 'litespeed.conf.crawler', '', 'auto'),
(1012, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(1013, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(1014, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(1015, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(1016, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(1017, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(1018, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(1019, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(1020, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(1021, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(1022, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(1023, 'litespeed.conf.cdn', '', 'auto'),
(1024, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(1025, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\",\"wp-includes\"]', 'auto'),
(1026, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(1027, 'litespeed.conf.cdn-quic', '', 'auto'),
(1028, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(1029, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(1030, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(1031, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(1032, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(1033, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(1034, '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'),
(1035, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(1036, 'litespeed.conf.qc-nameservers', '', 'auto'),
(1037, 'litespeed.conf.qc-cname', '', 'auto'),
(1038, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(1039, 'litespeed.purge.queue', '-1', 'auto'),
(1040, 'litespeed.purge.queue2', '-1', 'auto'),
(1052, 'litespeed.admin_display.thirdparty_litespeed_check', '1', 'auto'),
(1054, 'litespeed.gui.lscwp_whm_install', '-1', 'auto'),
(1055, 'litespeed.gui.dismiss', '-1', 'auto'),
(1240, '_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1770268011', 'off'),
(1241, '_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1770224811', 'off'),
(1242, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1770268011', 'off'),
(1243, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/02/wordpress-6-9-1-maintenance-release/\'>WordPress 6.9.1 Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/01/new-ai-agent-skill/\'>New AI Agent Skill for WordPress</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/203-miriam-schwab-on-elementors-decade-of-growth-and-the-future-with-ai\'>WPTavern: #203 – Miriam Schwab on Elementor’s Decade of Growth and the Future With AI</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/navigating-tech-shifts-expanding-your-developer-toolkit/\'>Open Channels FM: Navigating Tech Shifts, Expanding Your Developer Toolkit</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/tech-predictions/\'>Open Channels FM: Tech Predictions</a></li></ul></div>', 'off'),
(1245, '_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_elementor', '1770268844', 'off'),
(1246, '_site_transient_wp_plugin_dependencies_plugin_timeout_elementor', '1', 'off'),
(1247, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1770236444', 'off'),
(1248, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:8100;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4968;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2800;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2799;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:2258;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2157;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2157;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1974;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1736;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1681;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1632;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1568;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1535;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1520;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1516;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1477;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1384;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1318;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1301;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1186;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1163;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1132;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1125;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1111;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1097;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1086;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1082;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1052;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1021;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:1014;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:985;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:968;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:958;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:946;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:939;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:922;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:919;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:883;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:831;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:804;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:787;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:785;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:780;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:778;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:777;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:755;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:729;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:728;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:722;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:714;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:713;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:705;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:684;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:681;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:675;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:671;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:665;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:663;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:660;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:644;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:640;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:635;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:627;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:626;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:619;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:616;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:612;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:603;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:601;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:599;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:599;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:581;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:579;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:576;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:574;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:570;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:567;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:543;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:539;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:538;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:537;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:537;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:535;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:518;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:516;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:499;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:495;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:494;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:492;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:486;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:474;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:473;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:465;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:464;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:460;}s:10:\"automation\";a:3:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:455;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:449;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:443;}s:11:\"integration\";a:3:{s:4:\"name\";s:11:\"integration\";s:4:\"slug\";s:11:\"integration\";s:5:\"count\";i:441;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:435;}}', 'off'),
(1251, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1770225673;s:8:\"response\";a:2:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.35.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.9.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.35.0\";s:12:\"last_updated\";s:19:\"2026-02-02 09:47:18\";s:11:\"new_version\";s:6:\"3.35.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.9.1\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:381:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcwMjI1NjYwLCJleHAiOjE3NzAzMTIwNjB9.Gx68duuSlrVzV23Q6jcZuBbinJ67BryRftZokRXt3k8/package_download\";s:13:\"download_link\";s:381:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcwMjI1NjYwLCJleHAiOjE3NzAzMTIwNjB9.Gx68duuSlrVzV23Q6jcZuBbinJ67BryRftZokRXt3k8/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.9.1\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:358:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJpYXQiOjE3NzAyMjU2NjAsImV4cCI6MTc3MDMxMjA2MH0.HuRO40jM9fmUvBPTlWH1EmqTrl2nyN-lE0fmqc-AKt4/previous_download\";s:13:\"download_link\";s:358:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvcm95YWxoZWFsdGgiLCJpYXQiOjE3NzAyMjU2NjAsImV4cCI6MTc3MDMxMjA2MH0.HuRO40jM9fmUvBPTlWH1EmqTrl2nyN-lE0fmqc-AKt4/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:31:\"backup-backup/backup-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/backup-backup\";s:4:\"slug\";s:13:\"backup-backup\";s:6:\"plugin\";s:31:\"backup-backup/backup-backup.php\";s:11:\"new_version\";s:5:\"2.1.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/backup-backup/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/backup-backup.2.1.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/backup-backup/assets/icon-128x128.png?rev=2995566\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/backup-backup/assets/banner-772x250.png?rev=2429136\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:3:\"7.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:41:\"powerpack-elements/powerpack-elements.php\";O:8:\"stdClass\":17:{s:11:\"new_version\";s:7:\"2.12.15\";s:14:\"stable_version\";s:7:\"2.12.15\";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:\"2025-11-27 10:06:14\";s:8:\"homepage\";s:29:\"https://powerpackelements.com\";s:7:\"package\";s:206:\"https://powerpackelements.com/edd-sl/package_download/MTc3MDQxNzM2OTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjJlNWUwNjY1NDhlMzkxM2IyOTc3OTVkMTI2ZTcxZWUwOmh0dHBzQC8vbXJhcmlmLm1lL3JveWFsaGVhbHRoOjA=\";s:13:\"download_link\";s:206:\"https://powerpackelements.com/edd-sl/package_download/MTc3MDQxNzM2OTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjJlNWUwNjY1NDhlMzkxM2IyOTc3OTVkMTI2ZTcxZWUwOmh0dHBzQC8vbXJhcmlmLm1lL3JveWFsaGVhbHRoOjA=\";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:98:\"https://mrarif.me/royalhealth/wp-content/plugins/powerpack-elements/assets/images/icon-128x128.png\";s:2:\"2x\";s:98:\"https://mrarif.me/royalhealth/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";s:7:\"default\";s:98:\"https://mrarif.me/royalhealth/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:7:\"checked\";a:5:{s:31:\"backup-backup/backup-backup.php\";s:5:\"2.1.0\";s:23:\"elementor/elementor.php\";s:6:\"3.34.4\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.35.0\";s:35:\"litespeed-cache/litespeed-cache.php\";s:3:\"7.7\";s:41:\"powerpack-elements/powerpack-elements.php\";s:7:\"2.12.15\";}}', 'off'),
(1256, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1770225670;}', 'auto'),
(1252, 'bmi_hotfixes', 'a:5:{i:0;s:13:\"BMI_D17_M1_26\";i:1;s:14:\"BMI_D13_M12_01\";i:2;s:14:\"BMI_D20_M07_01\";i:3;s:18:\"BMI_D17_M12_Y21_02\";i:4;s:18:\"BMI_D13_M08_Y23_01\";}', 'auto'),
(1253, 'bmi_initial_installation_version', '2.1.0', 'auto'),
(1255, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(1268, '_transient_bmi_latest_size_contents_others', '103', 'on'),
(1269, '_transient_bmi_latest_size_wordpress', '61564372', 'on'),
(1270, '_transient_bmi_latest_size_database', '40235915', 'on'),
(1271, 'bmi_required_space', '215760480', 'auto'),
(1222, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.1\";s:7:\"version\";s:5:\"6.9.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1770225660;s:15:\"version_checked\";s:5:\"6.9.1\";s:12:\"translations\";a:0:{}}', 'off'),
(1226, '_transient_timeout_astra-theme-cron-test-ok', '1770228381', 'off'),
(1227, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(1228, '_site_transient_timeout_php_check_478252eea4acfca65f7d24ee29253bbe', '1770829582', 'off'),
(1229, '_site_transient_php_check_478252eea4acfca65f7d24ee29253bbe', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(1097, '_transient_health-check-site-status-result', '{\"good\":23,\"recommended\":2,\"critical\":0}', 'on');

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

--
-- Table structure for table `wpr_postmeta`
--

CREATE TABLE `wpr_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 `wpr_postmeta`
--

INSERT INTO `wpr_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'),
(1367, 154, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:791;s:4:\"file\";s:21:\"2026/02/banner-4.jpeg\";s:8:\"filesize\";i:59549;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-4-300x119.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5281;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-4-1024x405.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33012;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4653;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-4-768x304.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21356;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-4-1536x607.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:607;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1366, 154, '_wp_attached_file', '2026/02/banner-4.jpeg'),
(19, 14, '_edit_last', '1'),
(20, 14, '_edit_lock', '1770058625:1'),
(21, 14, '_wp_page_template', 'default'),
(28, 14, 'ast-featured-img', 'disabled'),
(24, 14, 'site-sidebar-layout', 'no-sidebar'),
(25, 14, 'ast-site-content-layout', 'full-width-container'),
(26, 14, 'site-content-style', 'default'),
(27, 14, 'site-sidebar-style', 'default'),
(29, 14, 'astra-migrate-meta-layouts', 'set'),
(30, 14, 'ast-breadcrumbs-content', 'disabled'),
(31, 14, 'theme-transparent-header-meta', 'default'),
(32, 16, '_elementor_edit_mode', 'builder'),
(33, 16, '_elementor_template_type', 'kit'),
(34, 6, '_wp_page_template', 'default'),
(35, 6, '_elementor_page_settings', 'a:20:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:12:\"Royal Health\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;}'),
(36, 14, '_elementor_edit_mode', 'builder'),
(37, 14, '_astra_content_layout_flag', 'disabled'),
(38, 14, 'ast-title-bar-display', 'disabled'),
(39, 14, '_elementor_template_type', 'wp-page'),
(40, 14, '_elementor_version', '3.34.4'),
(41, 14, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(82, 14, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"56a77e0\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"18cb9d6\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"7c20120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Untitled-5871.jpg\",\"id\":602,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"53310bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yermina Dumas Nico\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139689d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phlebotomist<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(52, 6, '_edit_lock', '1769929450:1'),
(53, 18, '_elementor_edit_mode', 'builder'),
(54, 18, '_elementor_template_type', 'kit'),
(55, 18, '_wp_page_template', 'default'),
(56, 18, '_elementor_page_settings', 'a:1:{s:16:\"site_description\";s:7:\"Welcome\";}'),
(70, 20, '_wp_page_template', 'elementor_header_footer'),
(58, 6, '_elementor_data', '[]'),
(59, 19, '_elementor_edit_mode', 'builder'),
(60, 19, '_elementor_template_type', 'kit'),
(61, 19, '_wp_page_template', 'default'),
(62, 19, '_elementor_page_settings', 'a:12:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:12:\"Royal Health\";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;}'),
(64, 19, '_elementor_data', '[]'),
(66, 6, '_elementor_version', '3.34.4'),
(67, 6, '_elementor_pro_version', '3.25.4'),
(71, 20, '_elementor_edit_mode', 'builder'),
(72, 20, '_elementor_template_type', 'wp-page'),
(73, 20, '_elementor_version', '3.34.4'),
(74, 20, '_elementor_pro_version', '3.25.4'),
(75, 20, '_elementor_page_settings', 'a:0:{}'),
(76, 21, '_wp_page_template', 'elementor_header_footer'),
(77, 21, '_elementor_edit_mode', 'builder'),
(78, 21, '_elementor_template_type', 'wp-page'),
(79, 21, '_elementor_version', '3.34.4'),
(80, 21, '_elementor_pro_version', '3.25.4'),
(81, 21, '_elementor_page_settings', 'a:0:{}'),
(83, 22, '_wp_page_template', 'elementor_header_footer'),
(84, 22, '_elementor_edit_mode', 'builder'),
(85, 22, '_elementor_template_type', 'wp-page'),
(86, 22, '_elementor_version', '3.34.4'),
(87, 22, '_elementor_pro_version', '3.25.4'),
(88, 22, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(879, 112, '_wp_page_template', 'elementor_header_footer'),
(97, 24, '_wp_page_template', 'elementor_header_footer'),
(98, 24, '_elementor_edit_mode', 'builder'),
(99, 24, '_elementor_template_type', 'wp-page'),
(100, 24, '_elementor_version', '3.34.4'),
(101, 24, '_elementor_pro_version', '3.25.4'),
(102, 24, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(135, 29, '_wp_page_template', 'elementor_header_footer'),
(136, 29, '_elementor_edit_mode', 'builder'),
(137, 29, '_elementor_template_type', 'wp-page'),
(138, 29, '_elementor_version', '3.34.4'),
(139, 29, '_elementor_pro_version', '3.25.4'),
(140, 29, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(94, 23, '_edit_lock', '1769929714:1'),
(95, 23, '_wp_trash_meta_status', 'publish'),
(96, 23, '_wp_trash_meta_time', '1769929734'),
(104, 24, '_elementor_page_settings', 'a:0:{}'),
(445, 68, '_elementor_page_settings', 'a:0:{}'),
(107, 25, '_wp_page_template', 'elementor_header_footer'),
(108, 25, '_elementor_edit_mode', 'builder'),
(109, 25, '_elementor_template_type', 'wp-page'),
(110, 25, '_elementor_version', '3.34.4'),
(111, 25, '_elementor_pro_version', '3.25.4'),
(112, 25, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(428, 67, '_wp_page_template', 'elementor_header_footer'),
(429, 67, '_elementor_edit_mode', 'builder'),
(114, 25, '_elementor_page_settings', 'a:0:{}'),
(117, 26, '_wp_page_template', 'elementor_header_footer'),
(118, 26, '_elementor_edit_mode', 'builder'),
(119, 26, '_elementor_template_type', 'wp-page'),
(120, 26, '_elementor_version', '3.34.4'),
(121, 26, '_elementor_pro_version', '3.25.4'),
(122, 26, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(430, 67, '_elementor_template_type', 'wp-page'),
(431, 67, '_elementor_version', '3.34.4'),
(432, 67, '_elementor_pro_version', '3.25.4'),
(433, 67, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(414, 65, '_wp_page_template', 'elementor_header_footer'),
(367, 60, '_wp_page_template', 'elementor_header_footer'),
(368, 60, '_elementor_edit_mode', 'builder'),
(369, 60, '_elementor_template_type', 'wp-page'),
(370, 60, '_elementor_version', '3.34.4'),
(371, 60, '_elementor_pro_version', '3.25.4'),
(372, 60, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(130, 27, '_edit_lock', '1769929825:1'),
(131, 27, '_wp_trash_meta_status', 'publish'),
(132, 27, '_wp_trash_meta_time', '1769929830'),
(133, 28, '_wp_trash_meta_status', 'publish'),
(134, 28, '_wp_trash_meta_time', '1769929892'),
(142, 29, '_elementor_page_settings', 'a:0:{}'),
(438, 68, '_wp_page_template', 'elementor_header_footer'),
(439, 68, '_elementor_edit_mode', 'builder'),
(440, 68, '_elementor_template_type', 'wp-page'),
(441, 68, '_elementor_version', '3.34.4'),
(442, 68, '_elementor_pro_version', '3.25.4'),
(443, 68, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(145, 30, '_wp_page_template', 'elementor_header_footer'),
(146, 30, '_elementor_edit_mode', 'builder'),
(147, 30, '_elementor_template_type', 'wp-page'),
(148, 30, '_elementor_version', '3.34.4'),
(149, 30, '_elementor_pro_version', '3.25.4'),
(150, 30, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(152, 30, '_elementor_page_settings', 'a:0:{}'),
(415, 65, '_elementor_edit_mode', 'builder'),
(416, 65, '_elementor_template_type', 'wp-page'),
(155, 31, '_wp_page_template', 'elementor_header_footer'),
(156, 31, '_elementor_edit_mode', 'builder'),
(157, 31, '_elementor_template_type', 'wp-page'),
(158, 31, '_elementor_version', '3.34.4'),
(159, 31, '_elementor_pro_version', '3.25.4'),
(160, 31, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(435, 67, '_elementor_page_settings', 'a:0:{}'),
(880, 112, '_elementor_edit_mode', 'builder'),
(417, 65, '_elementor_version', '3.34.4'),
(400, 63, '_wp_page_template', 'elementor_header_footer'),
(401, 63, '_elementor_edit_mode', 'builder'),
(402, 63, '_elementor_template_type', 'wp-page'),
(403, 63, '_elementor_version', '3.34.4'),
(404, 63, '_elementor_pro_version', '3.25.4'),
(405, 63, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(168, 32, '_edit_lock', '1769929972:1'),
(169, 32, '_wp_trash_meta_status', 'publish'),
(170, 32, '_wp_trash_meta_time', '1769930011'),
(171, 33, '_wp_trash_meta_status', 'publish'),
(172, 33, '_wp_trash_meta_time', '1769930034'),
(173, 34, '_edit_last', '1'),
(174, 34, '_edit_lock', '1770058341:1'),
(175, 34, '_wp_page_template', 'elementor_header_footer'),
(182, 34, 'ast-featured-img', 'disabled'),
(178, 34, 'site-sidebar-layout', 'no-sidebar'),
(179, 34, 'ast-site-content-layout', 'full-width-container'),
(180, 34, 'site-content-style', 'default'),
(181, 34, 'site-sidebar-style', 'default'),
(183, 34, 'astra-migrate-meta-layouts', 'set'),
(184, 34, 'ast-breadcrumbs-content', 'disabled'),
(185, 34, 'theme-transparent-header-meta', 'default'),
(186, 36, '_edit_last', '1'),
(187, 36, '_wp_page_template', 'elementor_header_footer'),
(194, 36, 'ast-featured-img', 'disabled'),
(190, 36, 'site-sidebar-layout', 'no-sidebar'),
(191, 36, 'ast-site-content-layout', 'full-width-container'),
(192, 36, 'site-content-style', 'default'),
(193, 36, 'site-sidebar-style', 'default'),
(195, 36, 'astra-migrate-meta-layouts', 'set'),
(196, 36, 'ast-breadcrumbs-content', 'disabled'),
(197, 36, 'theme-transparent-header-meta', 'default'),
(198, 36, '_edit_lock', '1769951223:1'),
(199, 38, '_edit_last', '1'),
(200, 38, '_edit_lock', '1770012324:1'),
(201, 38, '_wp_page_template', 'elementor_header_footer'),
(208, 38, 'ast-featured-img', 'disabled'),
(204, 38, 'site-sidebar-layout', 'no-sidebar'),
(205, 38, 'ast-site-content-layout', 'full-width-container'),
(206, 38, 'site-content-style', 'default'),
(207, 38, 'site-sidebar-style', 'default'),
(209, 38, 'astra-migrate-meta-layouts', 'set'),
(210, 38, 'ast-breadcrumbs-content', 'disabled'),
(211, 38, 'theme-transparent-header-meta', 'default'),
(212, 40, '_edit_last', '1'),
(213, 40, '_edit_lock', '1769945901:1'),
(214, 40, '_wp_page_template', 'elementor_header_footer'),
(221, 40, 'ast-featured-img', 'disabled'),
(217, 40, 'site-sidebar-layout', 'no-sidebar'),
(218, 40, 'ast-site-content-layout', 'full-width-container'),
(219, 40, 'site-content-style', 'default'),
(220, 40, 'site-sidebar-style', 'default'),
(222, 40, 'astra-migrate-meta-layouts', 'set'),
(223, 40, 'ast-breadcrumbs-content', 'disabled'),
(224, 40, 'theme-transparent-header-meta', 'default'),
(225, 42, '_edit_last', '1'),
(226, 42, '_edit_lock', '1769945526:1'),
(227, 42, '_wp_page_template', 'elementor_header_footer'),
(234, 42, 'ast-featured-img', 'disabled'),
(230, 42, 'site-sidebar-layout', 'no-sidebar'),
(231, 42, 'ast-site-content-layout', 'full-width-container'),
(232, 42, 'site-content-style', 'default'),
(233, 42, 'site-sidebar-style', 'default'),
(235, 42, 'astra-migrate-meta-layouts', 'set'),
(236, 42, 'ast-breadcrumbs-content', 'disabled'),
(237, 42, 'theme-transparent-header-meta', 'default'),
(238, 44, '_edit_last', '1'),
(239, 44, '_wp_page_template', 'elementor_header_footer'),
(246, 44, 'ast-featured-img', 'disabled'),
(242, 44, 'site-sidebar-layout', 'no-sidebar'),
(243, 44, 'ast-site-content-layout', 'full-width-container'),
(244, 44, 'site-content-style', 'default'),
(245, 44, 'site-sidebar-style', 'default'),
(247, 44, 'astra-migrate-meta-layouts', 'set'),
(248, 44, 'ast-breadcrumbs-content', 'disabled'),
(249, 44, 'theme-transparent-header-meta', 'default'),
(250, 44, '_edit_lock', '1769946796:1'),
(251, 46, '_edit_last', '1'),
(252, 46, '_edit_lock', '1769946797:1'),
(253, 46, '_wp_page_template', 'elementor_header_footer'),
(260, 46, 'ast-featured-img', 'disabled'),
(256, 46, 'site-sidebar-layout', 'no-sidebar'),
(257, 46, 'ast-site-content-layout', 'full-width-container'),
(258, 46, 'site-content-style', 'default'),
(259, 46, 'site-sidebar-style', 'default'),
(261, 46, 'astra-migrate-meta-layouts', 'set'),
(262, 46, 'ast-breadcrumbs-content', 'disabled'),
(263, 46, 'theme-transparent-header-meta', 'default'),
(264, 48, '_edit_last', '1'),
(265, 48, '_edit_lock', '1769943341:1'),
(266, 48, '_wp_page_template', 'elementor_header_footer'),
(273, 48, 'ast-featured-img', 'disabled'),
(269, 48, 'site-sidebar-layout', 'no-sidebar'),
(270, 48, 'ast-site-content-layout', 'full-width-container'),
(271, 48, 'site-content-style', 'default'),
(272, 48, 'site-sidebar-style', 'default'),
(274, 48, 'astra-migrate-meta-layouts', 'set'),
(275, 48, 'ast-breadcrumbs-content', 'disabled'),
(276, 48, 'theme-transparent-header-meta', 'default'),
(277, 50, '_menu_item_type', 'post_type'),
(278, 50, '_menu_item_menu_item_parent', '0'),
(279, 50, '_menu_item_object_id', '14'),
(280, 50, '_menu_item_object', 'page'),
(281, 50, '_menu_item_target', ''),
(282, 50, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(283, 50, '_menu_item_xfn', ''),
(284, 50, '_menu_item_url', ''),
(286, 51, '_menu_item_type', 'post_type'),
(287, 51, '_menu_item_menu_item_parent', '0'),
(288, 51, '_menu_item_object_id', '34'),
(289, 51, '_menu_item_object', 'page'),
(290, 51, '_menu_item_target', ''),
(291, 51, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(292, 51, '_menu_item_xfn', ''),
(293, 51, '_menu_item_url', ''),
(295, 52, '_menu_item_type', 'post_type'),
(296, 52, '_menu_item_menu_item_parent', '0'),
(297, 52, '_menu_item_object_id', '48'),
(298, 52, '_menu_item_object', 'page'),
(299, 52, '_menu_item_target', ''),
(300, 52, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(301, 52, '_menu_item_xfn', ''),
(302, 52, '_menu_item_url', ''),
(304, 53, '_menu_item_type', 'post_type'),
(305, 53, '_menu_item_menu_item_parent', '58'),
(306, 53, '_menu_item_object_id', '42'),
(307, 53, '_menu_item_object', 'page'),
(308, 53, '_menu_item_target', ''),
(309, 53, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(310, 53, '_menu_item_xfn', ''),
(311, 53, '_menu_item_url', ''),
(313, 54, '_menu_item_type', 'post_type'),
(314, 54, '_menu_item_menu_item_parent', '58'),
(315, 54, '_menu_item_object_id', '38'),
(316, 54, '_menu_item_object', 'page'),
(317, 54, '_menu_item_target', ''),
(318, 54, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(319, 54, '_menu_item_xfn', ''),
(320, 54, '_menu_item_url', ''),
(322, 55, '_menu_item_type', 'post_type'),
(323, 55, '_menu_item_menu_item_parent', '58'),
(324, 55, '_menu_item_object_id', '40'),
(325, 55, '_menu_item_object', 'page'),
(326, 55, '_menu_item_target', ''),
(327, 55, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(328, 55, '_menu_item_xfn', ''),
(329, 55, '_menu_item_url', ''),
(331, 56, '_menu_item_type', 'post_type'),
(332, 56, '_menu_item_menu_item_parent', '58'),
(333, 56, '_menu_item_object_id', '46'),
(334, 56, '_menu_item_object', 'page'),
(335, 56, '_menu_item_target', ''),
(336, 56, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(337, 56, '_menu_item_xfn', ''),
(338, 56, '_menu_item_url', ''),
(340, 57, '_menu_item_type', 'post_type'),
(341, 57, '_menu_item_menu_item_parent', '0'),
(342, 57, '_menu_item_object_id', '2'),
(343, 57, '_menu_item_object', 'page'),
(344, 57, '_menu_item_target', ''),
(345, 57, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(346, 57, '_menu_item_xfn', ''),
(347, 57, '_menu_item_url', ''),
(348, 57, '_menu_item_orphaned', '1769930529'),
(349, 58, '_menu_item_type', 'post_type'),
(350, 58, '_menu_item_menu_item_parent', '0'),
(351, 58, '_menu_item_object_id', '36'),
(352, 58, '_menu_item_object', 'page'),
(353, 58, '_menu_item_target', ''),
(354, 58, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(355, 58, '_menu_item_xfn', ''),
(356, 58, '_menu_item_url', ''),
(358, 59, '_menu_item_type', 'post_type'),
(359, 59, '_menu_item_menu_item_parent', '58'),
(360, 59, '_menu_item_object_id', '44'),
(361, 59, '_menu_item_object', 'page'),
(362, 59, '_menu_item_target', ''),
(363, 59, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(364, 59, '_menu_item_xfn', ''),
(365, 59, '_menu_item_url', ''),
(374, 60, '_elementor_page_settings', 'a:0:{}'),
(514, 75, '_wp_page_template', 'elementor_header_footer'),
(426, 66, '_wp_attached_file', '2026/02/banner-44.jpg'),
(427, 66, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:950;s:4:\"file\";s:21:\"2026/02/banner-44.jpg\";s:8:\"filesize\";i:81788;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-44-300x143.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7680;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-44-1024x486.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5599;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-44-768x365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30552;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-44-1536x730.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87876;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(377, 61, '_wp_page_template', 'elementor_header_footer'),
(378, 61, '_elementor_edit_mode', 'builder'),
(379, 61, '_elementor_template_type', 'wp-page'),
(380, 61, '_elementor_version', '3.34.4'),
(381, 61, '_elementor_pro_version', '3.25.4'),
(382, 61, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(384, 61, '_elementor_page_settings', 'a:0:{}'),
(595, 83, '_wp_page_template', 'elementor_header_footer'),
(461, 70, '_wp_page_template', 'elementor_header_footer'),
(462, 70, '_elementor_edit_mode', 'builder'),
(463, 70, '_elementor_template_type', 'wp-page'),
(464, 70, '_elementor_version', '3.34.4'),
(465, 70, '_elementor_pro_version', '3.25.4'),
(466, 70, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"90\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_font_size\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(596, 83, '_elementor_edit_mode', 'builder'),
(597, 83, '_elementor_template_type', 'wp-page'),
(387, 62, '_wp_page_template', 'elementor_header_footer'),
(388, 62, '_elementor_edit_mode', 'builder'),
(389, 62, '_elementor_template_type', 'wp-page'),
(390, 62, '_elementor_version', '3.34.4'),
(391, 62, '_elementor_pro_version', '3.25.4'),
(392, 62, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(406, 63, '_elementor_page_settings', 'a:0:{}'),
(407, 64, '_wp_page_template', 'elementor_header_footer'),
(408, 64, '_elementor_edit_mode', 'builder'),
(409, 64, '_elementor_template_type', 'wp-page'),
(410, 64, '_elementor_version', '3.34.4'),
(411, 64, '_elementor_pro_version', '3.25.4'),
(412, 64, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"ROYAL HEALTH\\nMEDICAL CENTER\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(413, 64, '_elementor_page_settings', 'a:0:{}'),
(418, 65, '_elementor_pro_version', '3.25.4'),
(419, 65, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}]},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"center\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(448, 69, '_wp_page_template', 'elementor_header_footer'),
(449, 69, '_elementor_edit_mode', 'builder'),
(450, 69, '_elementor_template_type', 'wp-page'),
(451, 69, '_elementor_version', '3.34.4'),
(452, 69, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(453, 69, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"90\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_font_size\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(515, 75, '_elementor_edit_mode', 'builder'),
(494, 73, '_wp_page_template', 'elementor_header_footer'),
(495, 73, '_elementor_edit_mode', 'builder'),
(496, 73, '_elementor_template_type', 'wp-page'),
(497, 73, '_elementor_version', '3.34.4'),
(498, 73, '_elementor_pro_version', '3.25.4'),
(499, 73, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(562, 80, '_wp_page_template', 'elementor_header_footer'),
(1502, 168, '_wp_page_template', 'elementor_header_footer'),
(468, 70, '_elementor_page_settings', 'a:0:{}'),
(471, 71, '_wp_page_template', 'elementor_header_footer'),
(472, 71, '_elementor_edit_mode', 'builder'),
(473, 71, '_elementor_template_type', 'wp-page'),
(474, 71, '_elementor_version', '3.34.4'),
(475, 71, '_elementor_pro_version', '3.25.4'),
(476, 71, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"90\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_font_size\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(478, 71, '_elementor_page_settings', 'a:0:{}'),
(5063, 526, '_wp_page_template', 'default'),
(5064, 526, '_elementor_edit_mode', 'builder'),
(5065, 526, '_elementor_template_type', 'wp-page'),
(5066, 526, '_elementor_version', '3.34.4'),
(5067, 526, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5068, 526, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F8\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(481, 72, '_wp_page_template', 'elementor_header_footer'),
(482, 72, '_elementor_edit_mode', 'builder'),
(483, 72, '_elementor_template_type', 'wp-page'),
(484, 72, '_elementor_version', '3.34.4'),
(485, 72, '_elementor_pro_version', '3.25.4'),
(486, 72, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(527, 76, '_wp_page_template', 'elementor_header_footer'),
(528, 76, '_elementor_edit_mode', 'builder'),
(529, 76, '_elementor_template_type', 'wp-page'),
(530, 76, '_elementor_version', '3.34.4'),
(531, 76, '_elementor_pro_version', '3.25.4'),
(532, 76, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(501, 73, '_elementor_page_settings', 'a:0:{}'),
(504, 74, '_wp_page_template', 'elementor_header_footer'),
(505, 74, '_elementor_edit_mode', 'builder'),
(506, 74, '_elementor_template_type', 'wp-page'),
(507, 74, '_elementor_version', '3.34.4'),
(508, 74, '_elementor_pro_version', '3.25.4'),
(509, 74, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(511, 74, '_elementor_page_settings', 'a:0:{}'),
(516, 75, '_elementor_template_type', 'wp-page'),
(517, 75, '_elementor_version', '3.34.4'),
(518, 75, '_elementor_pro_version', '3.25.4'),
(519, 75, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(563, 80, '_elementor_edit_mode', 'builder'),
(564, 80, '_elementor_template_type', 'wp-page'),
(565, 80, '_elementor_version', '3.34.4'),
(566, 80, '_elementor_pro_version', '3.25.4'),
(567, 80, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(534, 76, '_elementor_page_settings', 'a:0:{}'),
(537, 77, '_wp_page_template', 'elementor_header_footer'),
(538, 77, '_elementor_edit_mode', 'builder'),
(539, 77, '_elementor_template_type', 'wp-page'),
(540, 77, '_elementor_version', '3.34.4'),
(541, 77, '_elementor_pro_version', '3.25.4'),
(542, 77, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(544, 77, '_elementor_page_settings', 'a:0:{}'),
(547, 78, '_wp_page_template', 'elementor_header_footer'),
(548, 78, '_elementor_edit_mode', 'builder'),
(549, 78, '_elementor_template_type', 'wp-page'),
(550, 78, '_elementor_version', '3.34.4'),
(551, 78, '_elementor_pro_version', '3.25.4'),
(552, 78, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(616, 85, '_elementor_edit_mode', 'builder'),
(598, 83, '_elementor_version', '3.34.4'),
(599, 83, '_elementor_pro_version', '3.25.4'),
(600, 83, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/WhatsApp-Image-2026-02-01-at-13.42.59.jpeg\",\"id\":79,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(560, 79, '_wp_attached_file', '2026/02/WhatsApp-Image-2026-02-01-at-13.42.59.jpeg'),
(561, 79, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:50:\"2026/02/WhatsApp-Image-2026-02-01-at-13.42.59.jpeg\";s:8:\"filesize\";i:6488;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(569, 80, '_elementor_page_settings', 'a:0:{}'),
(572, 81, '_wp_page_template', 'elementor_header_footer'),
(573, 81, '_elementor_edit_mode', 'builder'),
(574, 81, '_elementor_template_type', 'wp-page'),
(575, 81, '_elementor_version', '3.34.4'),
(576, 81, '_elementor_pro_version', '3.25.4'),
(577, 81, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(579, 81, '_elementor_page_settings', 'a:0:{}'),
(615, 85, '_wp_page_template', 'elementor_header_footer'),
(582, 82, '_wp_page_template', 'elementor_header_footer'),
(583, 82, '_elementor_edit_mode', 'builder'),
(584, 82, '_elementor_template_type', 'wp-page'),
(585, 82, '_elementor_version', '3.34.4'),
(586, 82, '_elementor_pro_version', '3.25.4'),
(587, 82, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/WhatsApp-Image-2026-02-01-at-13.42.59.jpeg\",\"id\":79,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(777, 100, '_wp_page_template', 'elementor_header_footer'),
(778, 100, '_elementor_edit_mode', 'builder'),
(779, 100, '_elementor_template_type', 'wp-page'),
(780, 100, '_elementor_version', '3.34.4'),
(781, 100, '_elementor_pro_version', '3.25.4'),
(782, 100, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4158, 435, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(602, 83, '_elementor_page_settings', 'a:0:{}'),
(605, 84, '_wp_page_template', 'elementor_header_footer'),
(606, 84, '_elementor_edit_mode', 'builder'),
(607, 84, '_elementor_template_type', 'wp-page'),
(608, 84, '_elementor_version', '3.34.4'),
(609, 84, '_elementor_pro_version', '3.25.4'),
(610, 84, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/WhatsApp-Image-2026-02-01-at-13.42.59.jpeg\",\"id\":79,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(612, 84, '_elementor_page_settings', 'a:0:{}'),
(617, 85, '_elementor_template_type', 'wp-page'),
(618, 85, '_elementor_version', '3.34.4'),
(619, 85, '_elementor_pro_version', '3.25.4'),
(620, 85, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(807, 103, '_wp_page_template', 'elementor_header_footer'),
(808, 103, '_elementor_edit_mode', 'builder'),
(809, 103, '_elementor_template_type', 'wp-page'),
(810, 103, '_elementor_version', '3.34.4'),
(811, 103, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(812, 103, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(628, 86, '_elementor_edit_mode', 'builder'),
(629, 86, '_elementor_template_type', 'header'),
(630, 87, '_elementor_edit_mode', 'builder'),
(631, 87, '_elementor_template_type', 'header'),
(632, 86, '_elementor_version', '3.34.4'),
(633, 86, '_elementor_pro_version', '3.34.4'),
(634, 86, '_astra_content_layout_flag', 'disabled'),
(636, 86, 'ast-title-bar-display', 'disabled'),
(637, 86, 'ast-featured-img', 'disabled'),
(638, 86, 'ast-site-content-layout', 'full-width-container'),
(639, 86, 'site-sidebar-layout', 'no-sidebar'),
(643, 86, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCF9F8\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":7,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(641, 86, '_edit_lock', '1770016488:1'),
(642, 86, '_wp_page_template', 'default'),
(646, 88, '_wp_attached_file', '2026/02/logo-9.png'),
(647, 88, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:798;s:6:\"height\";i:415;s:4:\"file\";s:18:\"2026/02/logo-9.png\";s:8:\"filesize\";i:119768;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"logo-9-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"logo-9-768x399.png\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(648, 89, '_elementor_edit_mode', 'builder'),
(649, 89, '_elementor_template_type', 'header'),
(650, 89, '_elementor_version', '3.34.4'),
(651, 89, '_elementor_pro_version', '3.25.4'),
(652, 89, '_wp_page_template', 'default'),
(653, 89, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":226,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}]},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(662, 90, '_elementor_edit_mode', 'builder'),
(663, 90, '_elementor_template_type', 'header'),
(664, 90, '_elementor_version', '3.34.4'),
(665, 90, '_elementor_pro_version', '3.25.4'),
(666, 90, '_wp_page_template', 'default'),
(667, 90, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":226,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}]},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(684, 91, '_elementor_edit_mode', 'builder'),
(685, 91, '_elementor_template_type', 'header'),
(686, 91, '_elementor_version', '3.34.4'),
(687, 91, '_elementor_pro_version', '3.25.4'),
(688, 91, '_wp_page_template', 'default'),
(689, 91, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}]},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(756, 86, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(671, 90, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(672, 90, '_elementor_screenshot_failed', '2026-02-01 07:57:15'),
(699, 92, '_elementor_edit_mode', 'builder'),
(700, 92, '_elementor_template_type', 'header'),
(701, 92, '_elementor_version', '3.34.4'),
(702, 92, '_elementor_pro_version', '3.25.4'),
(703, 92, '_wp_page_template', 'default'),
(704, 92, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"menu_type\":\"off-canvas\",\"full_width\":\"stretch\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}]},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(691, 91, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(714, 93, '_elementor_edit_mode', 'builder'),
(715, 93, '_elementor_template_type', 'header'),
(716, 93, '_elementor_version', '3.34.4'),
(717, 93, '_elementor_pro_version', '3.25.4'),
(718, 93, '_wp_page_template', 'default'),
(719, 93, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}]},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(706, 92, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(729, 94, '_elementor_edit_mode', 'builder'),
(730, 94, '_elementor_template_type', 'header'),
(731, 94, '_elementor_version', '3.34.4'),
(732, 94, '_elementor_pro_version', '3.25.4'),
(733, 94, '_wp_page_template', 'default'),
(734, 94, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}]},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(721, 93, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(744, 95, '_elementor_edit_mode', 'builder'),
(745, 95, '_elementor_template_type', 'header'),
(746, 95, '_elementor_version', '3.34.4'),
(747, 95, '_elementor_pro_version', '3.25.4'),
(748, 95, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(749, 95, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}]},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(736, 94, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1045, 127, '_elementor_edit_mode', 'builder'),
(1046, 127, '_elementor_template_type', 'header'),
(1047, 127, '_elementor_version', '3.34.4'),
(1048, 127, '_elementor_pro_version', '3.25.4'),
(1049, 127, '_wp_page_template', 'default'),
(1050, 127, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(751, 95, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1057, 128, '_elementor_edit_mode', 'builder'),
(1058, 128, '_elementor_template_type', 'header'),
(1059, 128, '_elementor_version', '3.34.4'),
(1060, 128, '_elementor_pro_version', '3.25.4'),
(1061, 128, '_wp_page_template', 'default'),
(1062, 128, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-104\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(759, 96, '_wp_attached_file', '2026/02/fav-7.png'),
(760, 96, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:540;s:6:\"height\";i:540;s:4:\"file\";s:17:\"2026/02/fav-7.png\";s:8:\"filesize\";i:138343;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"fav-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54960;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"fav-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(761, 97, '_wp_attached_file', '2026/02/cropped-fav-7.png'),
(762, 97, '_wp_attachment_context', 'site-icon'),
(763, 97, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2026/02/cropped-fav-7.png\";s:8:\"filesize\";i:123688;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18854;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47479;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27902;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25227;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:23:\"cropped-fav-7-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1722;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(797, 102, '_elementor_template_type', 'wp-page'),
(798, 102, '_elementor_version', '3.34.4'),
(799, 102, '_elementor_pro_version', '3.25.4'),
(800, 102, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(795, 102, '_wp_page_template', 'elementor_header_footer'),
(796, 102, '_elementor_edit_mode', 'builder'),
(775, 99, '_wp_attached_file', '2026/02/banner-12.jpg'),
(776, 99, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:914;s:4:\"file\";s:21:\"2026/02/banner-12.jpg\";s:8:\"filesize\";i:99750;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-12-300x137.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9769;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-12-1024x468.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-12-768x351.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37385;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-12-1536x702.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:702;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105539;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(784, 100, '_elementor_page_settings', 'a:0:{}'),
(786, 101, '_wp_page_template', 'elementor_header_footer'),
(787, 101, '_elementor_edit_mode', 'builder'),
(788, 101, '_elementor_template_type', 'wp-page'),
(789, 101, '_elementor_version', '3.34.4'),
(790, 101, '_elementor_pro_version', '3.25.4'),
(791, 101, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(793, 101, '_elementor_page_settings', 'a:0:{}'),
(860, 108, '_wp_page_template', 'elementor_header_footer'),
(840, 106, '_wp_page_template', 'elementor_header_footer'),
(841, 106, '_elementor_edit_mode', 'builder'),
(842, 106, '_elementor_template_type', 'wp-page'),
(843, 106, '_elementor_version', '3.34.4'),
(844, 106, '_elementor_pro_version', '3.25.4'),
(845, 106, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#00245e\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(912, 115, '_wp_page_template', 'elementor_header_footer'),
(1333, 151, '_wp_page_template', 'elementor_header_footer'),
(1482, 166, '_wp_page_template', 'elementor_header_footer'),
(814, 103, '_elementor_page_settings', 'a:0:{}'),
(817, 104, '_wp_page_template', 'elementor_header_footer'),
(818, 104, '_elementor_edit_mode', 'builder'),
(819, 104, '_elementor_template_type', 'wp-page'),
(820, 104, '_elementor_version', '3.34.4'),
(821, 104, '_elementor_pro_version', '3.25.4'),
(822, 104, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(824, 104, '_elementor_page_settings', 'a:0:{}'),
(827, 105, '_wp_page_template', 'elementor_header_footer'),
(828, 105, '_elementor_edit_mode', 'builder'),
(829, 105, '_elementor_template_type', 'wp-page'),
(830, 105, '_elementor_version', '3.34.4'),
(831, 105, '_elementor_pro_version', '3.25.4'),
(832, 105, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#00245e\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(881, 112, '_elementor_template_type', 'wp-page'),
(882, 112, '_elementor_version', '3.34.4'),
(883, 112, '_elementor_pro_version', '3.25.4'),
(884, 112, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(847, 106, '_elementor_page_settings', 'a:0:{}'),
(850, 107, '_wp_page_template', 'elementor_header_footer'),
(851, 107, '_elementor_edit_mode', 'builder'),
(852, 107, '_elementor_template_type', 'wp-page'),
(853, 107, '_elementor_version', '3.34.4'),
(854, 107, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(855, 107, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#00245e\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(857, 107, '_elementor_page_settings', 'a:0:{}'),
(861, 108, '_elementor_edit_mode', 'builder'),
(862, 108, '_elementor_template_type', 'wp-page'),
(863, 108, '_elementor_version', '3.34.4'),
(864, 108, '_elementor_pro_version', '3.25.4'),
(865, 108, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5059, 525, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(932, 117, '_wp_page_template', 'elementor_header_footer'),
(913, 115, '_elementor_edit_mode', 'builder'),
(914, 115, '_elementor_template_type', 'wp-page'),
(915, 115, '_elementor_version', '3.34.4'),
(916, 115, '_elementor_pro_version', '3.25.4'),
(917, 115, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":109,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-10.jpg\"},{\"id\":110,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-11.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(873, 109, '_wp_attached_file', '2026/02/banner-10.jpg'),
(874, 109, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:857;s:4:\"file\";s:21:\"2026/02/banner-10.jpg\";s:8:\"filesize\";i:135079;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-10-300x129.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12819;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-10-1024x439.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7970;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-10-768x329.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49070;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-10-1536x658.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139055;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(875, 110, '_wp_attached_file', '2026/02/banner-11.jpg'),
(876, 110, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1062;s:4:\"file\";s:21:\"2026/02/banner-11.jpg\";s:8:\"filesize\";i:136385;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-11-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12362;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-11-1024x544.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76145;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-11-768x408.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50429;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-11-1536x816.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(877, 111, '_wp_attached_file', '2026/02/banner1.jpg'),
(878, 111, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1055;s:4:\"file\";s:19:\"2026/02/banner1.jpg\";s:8:\"filesize\";i:169612;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"banner1-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12657;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"banner1-1024x540.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78910;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"banner1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7106;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"banner1-768x405.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51900;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"banner1-1536x810.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144104;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(886, 112, '_elementor_page_settings', 'a:0:{}'),
(889, 113, '_wp_page_template', 'elementor_header_footer'),
(890, 113, '_elementor_edit_mode', 'builder'),
(891, 113, '_elementor_template_type', 'wp-page'),
(892, 113, '_elementor_version', '3.34.4'),
(893, 113, '_elementor_pro_version', '3.25.4'),
(894, 113, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(896, 113, '_elementor_page_settings', 'a:0:{}'),
(965, 120, '_wp_page_template', 'elementor_header_footer'),
(966, 120, '_elementor_edit_mode', 'builder'),
(967, 120, '_elementor_template_type', 'wp-page'),
(899, 114, '_wp_page_template', 'elementor_header_footer'),
(900, 114, '_elementor_edit_mode', 'builder'),
(901, 114, '_elementor_template_type', 'wp-page'),
(902, 114, '_elementor_version', '3.34.4'),
(903, 114, '_elementor_pro_version', '3.25.4'),
(904, 114, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":109,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-10.jpg\"},{\"id\":110,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-11.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(945, 118, '_wp_page_template', 'elementor_header_footer'),
(946, 118, '_elementor_edit_mode', 'builder'),
(947, 118, '_elementor_template_type', 'wp-page'),
(948, 118, '_elementor_version', '3.34.4'),
(949, 118, '_elementor_pro_version', '3.25.4'),
(950, 118, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":109,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-10.jpg\"},{\"id\":110,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-11.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1012, 124, '_wp_page_template', 'elementor_header_footer'),
(1013, 124, '_elementor_edit_mode', 'builder'),
(1014, 124, '_elementor_template_type', 'wp-page'),
(1015, 124, '_elementor_version', '3.34.4'),
(1182, 138, '_wp_page_template', 'elementor_header_footer'),
(1183, 138, '_elementor_edit_mode', 'builder'),
(1300, 148, '_wp_page_template', 'elementor_header_footer'),
(919, 115, '_elementor_page_settings', 'a:0:{}'),
(922, 116, '_wp_page_template', 'elementor_header_footer'),
(923, 116, '_elementor_edit_mode', 'builder'),
(924, 116, '_elementor_template_type', 'wp-page'),
(925, 116, '_elementor_version', '3.34.4'),
(926, 116, '_elementor_pro_version', '3.25.4'),
(927, 116, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":109,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-10.jpg\"},{\"id\":110,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-11.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(929, 116, '_elementor_page_settings', 'a:0:{}'),
(933, 117, '_elementor_edit_mode', 'builder'),
(934, 117, '_elementor_template_type', 'wp-page'),
(935, 117, '_elementor_version', '3.34.4'),
(936, 117, '_elementor_pro_version', '3.25.4'),
(937, 117, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":109,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-10.jpg\"},{\"id\":110,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-11.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1032, 126, '_wp_page_template', 'elementor_header_footer'),
(978, 121, '_wp_page_template', 'elementor_header_footer'),
(979, 121, '_elementor_edit_mode', 'builder'),
(980, 121, '_elementor_template_type', 'wp-page'),
(981, 121, '_elementor_version', '3.34.4'),
(982, 121, '_elementor_pro_version', '3.25.4'),
(983, 121, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(952, 118, '_elementor_page_settings', 'a:0:{}'),
(955, 119, '_wp_page_template', 'elementor_header_footer'),
(956, 119, '_elementor_edit_mode', 'builder'),
(957, 119, '_elementor_template_type', 'wp-page'),
(958, 119, '_elementor_version', '3.34.4'),
(959, 119, '_elementor_pro_version', '3.25.4'),
(960, 119, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":109,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-10.jpg\"},{\"id\":110,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-11.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(962, 119, '_elementor_page_settings', 'a:0:{}'),
(968, 120, '_elementor_version', '3.34.4'),
(969, 120, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(970, 120, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1033, 126, '_elementor_edit_mode', 'builder'),
(1016, 124, '_elementor_pro_version', '3.25.4'),
(1017, 124, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(985, 121, '_elementor_page_settings', 'a:0:{}'),
(988, 122, '_wp_page_template', 'elementor_header_footer'),
(989, 122, '_elementor_edit_mode', 'builder'),
(990, 122, '_elementor_template_type', 'wp-page'),
(991, 122, '_elementor_version', '3.34.4'),
(992, 122, '_elementor_pro_version', '3.25.4'),
(993, 122, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical Center\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(995, 122, '_elementor_page_settings', 'a:0:{}'),
(998, 123, '_wp_page_template', 'elementor_header_footer'),
(999, 123, '_elementor_edit_mode', 'builder'),
(1000, 123, '_elementor_template_type', 'wp-page'),
(1001, 123, '_elementor_version', '3.34.4'),
(1002, 123, '_elementor_pro_version', '3.25.4'),
(1003, 123, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1079, 130, '_wp_page_template', 'elementor_header_footer'),
(1080, 130, '_elementor_edit_mode', 'builder'),
(1081, 130, '_elementor_template_type', 'wp-page'),
(1082, 130, '_elementor_version', '3.34.4'),
(1083, 130, '_elementor_pro_version', '3.25.4'),
(1084, 130, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1267, 145, '_wp_page_template', 'elementor_header_footer'),
(1019, 124, '_elementor_page_settings', 'a:0:{}'),
(1022, 125, '_wp_page_template', 'elementor_header_footer'),
(1023, 125, '_elementor_edit_mode', 'builder'),
(1024, 125, '_elementor_template_type', 'wp-page'),
(1025, 125, '_elementor_version', '3.34.4'),
(1026, 125, '_elementor_pro_version', '3.25.4'),
(1027, 125, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1029, 125, '_elementor_page_settings', 'a:0:{}'),
(1034, 126, '_elementor_template_type', 'wp-page'),
(1035, 126, '_elementor_version', '3.34.4'),
(1036, 126, '_elementor_pro_version', '3.25.4'),
(1037, 126, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1202, 140, '_wp_page_template', 'elementor_header_footer'),
(1184, 138, '_elementor_template_type', 'wp-page'),
(1185, 138, '_elementor_version', '3.34.4'),
(1186, 138, '_elementor_pro_version', '3.25.4'),
(1187, 138, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1052, 127, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1064, 128, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1067, 129, '_elementor_edit_mode', 'builder'),
(1068, 129, '_elementor_template_type', 'header'),
(1069, 129, '_elementor_version', '3.34.4'),
(1070, 129, '_elementor_pro_version', '3.25.4'),
(1071, 129, '_wp_page_template', 'default'),
(1072, 129, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-104\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}]},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}]},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1074, 129, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1112, 133, '_elementor_edit_mode', 'builder'),
(1113, 133, '_elementor_template_type', 'header'),
(1114, 133, '_elementor_version', '3.34.4'),
(1115, 133, '_elementor_pro_version', '3.25.4'),
(1116, 133, '_wp_page_template', 'default'),
(1117, 133, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-104\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1154, 136, '_elementor_edit_mode', 'builder'),
(1126, 134, '_elementor_edit_mode', 'builder'),
(1127, 134, '_elementor_template_type', 'header'),
(1128, 134, '_elementor_version', '3.34.4'),
(1129, 134, '_elementor_pro_version', '3.25.4'),
(1130, 134, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1131, 134, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-104\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1086, 130, '_elementor_page_settings', 'a:0:{}'),
(1089, 131, '_wp_page_template', 'elementor_header_footer'),
(1090, 131, '_elementor_edit_mode', 'builder'),
(1091, 131, '_elementor_template_type', 'wp-page'),
(1092, 131, '_elementor_version', '3.34.4'),
(1093, 131, '_elementor_pro_version', '3.25.4'),
(1094, 131, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1096, 131, '_elementor_page_settings', 'a:0:{}'),
(1099, 132, '_wp_page_template', 'elementor_header_footer'),
(1100, 132, '_elementor_edit_mode', 'builder'),
(1101, 132, '_elementor_template_type', 'wp-page'),
(1102, 132, '_elementor_version', '3.34.4'),
(1103, 132, '_elementor_pro_version', '3.25.4'),
(1104, 132, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5086, 528, '_wp_page_template', 'default'),
(5087, 528, '_elementor_edit_mode', 'builder'),
(5088, 528, '_elementor_template_type', 'wp-page'),
(5089, 528, '_elementor_version', '3.34.4'),
(5090, 528, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5091, 528, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F878\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1287, 147, '_wp_page_template', 'elementor_header_footer'),
(1268, 145, '_elementor_edit_mode', 'builder'),
(1269, 145, '_elementor_template_type', 'wp-page'),
(1270, 145, '_elementor_version', '3.34.4'),
(1271, 145, '_elementor_pro_version', '3.25.4'),
(1272, 145, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1119, 133, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1140, 135, '_elementor_edit_mode', 'builder'),
(1141, 135, '_elementor_template_type', 'header'),
(1142, 135, '_elementor_version', '3.34.4'),
(1143, 135, '_elementor_pro_version', '3.25.4'),
(1144, 135, '_wp_page_template', 'default'),
(1145, 135, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"background_background\":\"classic\",\"background_color\":\"#FFFFFF40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-104\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1133, 134, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1155, 136, '_elementor_template_type', 'header'),
(1156, 136, '_elementor_version', '3.34.4'),
(1157, 136, '_elementor_pro_version', '3.25.4'),
(1158, 136, '_wp_page_template', 'default'),
(1159, 136, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"60\",\"bottom\":\"5\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1147, 135, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1168, 137, '_elementor_edit_mode', 'builder'),
(1169, 137, '_elementor_template_type', 'header'),
(1170, 137, '_elementor_version', '3.34.4'),
(1171, 137, '_elementor_pro_version', '3.25.4'),
(1172, 137, '_wp_page_template', 'default'),
(1173, 137, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1161, 136, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1215, 141, '_elementor_edit_mode', 'builder'),
(1216, 141, '_elementor_template_type', 'header'),
(1217, 141, '_elementor_version', '3.34.4'),
(1218, 141, '_elementor_pro_version', '3.25.4'),
(1219, 141, '_wp_page_template', 'default'),
(1220, 141, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1175, 137, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1253, 144, '_elementor_edit_mode', 'builder'),
(1254, 144, '_elementor_template_type', 'header'),
(1255, 144, '_elementor_version', '3.34.4'),
(1256, 144, '_elementor_pro_version', '3.25.4'),
(1257, 144, '_wp_page_template', 'default'),
(1258, 144, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1229, 142, '_elementor_edit_mode', 'builder'),
(1230, 142, '_elementor_template_type', 'header'),
(1231, 142, '_elementor_version', '3.34.4'),
(1232, 142, '_elementor_pro_version', '3.25.4'),
(1233, 142, '_wp_page_template', 'default'),
(1234, 142, '_elementor_data', '[{\"id\":\"8f5396d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7f00d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a3dfbd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ca9cb45\"}],\"pp_display_conditions\":[{\"_id\":\"90d33dc\"}]},\"elements\":[{\"id\":\"0ffcc91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8b27791\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c0a3af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"964fe7e\"}],\"pp_display_conditions\":[{\"_id\":\"9bdd1fe\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"flex_align_items\":\"flex-end\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1189, 138, '_elementor_page_settings', 'a:0:{}'),
(1192, 139, '_wp_page_template', 'elementor_header_footer'),
(1193, 139, '_elementor_edit_mode', 'builder'),
(1194, 139, '_elementor_template_type', 'wp-page'),
(1195, 139, '_elementor_version', '3.34.4'),
(1196, 139, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1197, 139, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":950,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"99\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1199, 139, '_elementor_page_settings', 'a:0:{}'),
(1203, 140, '_elementor_edit_mode', 'builder'),
(1204, 140, '_elementor_template_type', 'wp-page'),
(1205, 140, '_elementor_version', '3.34.4'),
(1206, 140, '_elementor_pro_version', '3.25.4'),
(1207, 140, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1301, 148, '_elementor_edit_mode', 'builder'),
(1302, 148, '_elementor_template_type', 'wp-page'),
(1303, 148, '_elementor_version', '3.34.4'),
(1304, 148, '_elementor_pro_version', '3.25.4'),
(1305, 148, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1222, 141, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1241, 143, '_elementor_edit_mode', 'builder'),
(1242, 143, '_elementor_template_type', 'header'),
(1243, 143, '_elementor_version', '3.34.4'),
(1244, 143, '_elementor_pro_version', '3.25.4'),
(1245, 143, '_wp_page_template', 'default'),
(1246, 143, '_elementor_data', '[{\"id\":\"8f5396d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7f00d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5a3dfbd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ca9cb45\"}],\"pp_display_conditions\":[{\"_id\":\"90d33dc\"}]},\"elements\":[{\"id\":\"0ffcc91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8b27791\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2c0a3af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"964fe7e\"}],\"pp_display_conditions\":[{\"_id\":\"9bdd1fe\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1236, 142, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1248, 143, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2975, 316, '_elementor_edit_mode', 'builder'),
(2976, 316, '_elementor_template_type', 'header'),
(2977, 316, '_elementor_version', '3.34.4'),
(2978, 316, '_elementor_pro_version', '3.25.4'),
(2979, 316, '_wp_page_template', 'default'),
(2980, 316, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(1260, 144, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3172, 335, '_elementor_edit_mode', 'builder'),
(3173, 335, '_elementor_template_type', 'header'),
(3174, 335, '_elementor_version', '3.34.4'),
(3175, 335, '_elementor_pro_version', '3.25.4'),
(3176, 335, '_wp_page_template', 'default'),
(3177, 335, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(1274, 145, '_elementor_page_settings', 'a:0:{}'),
(1277, 146, '_wp_page_template', 'elementor_header_footer'),
(1278, 146, '_elementor_edit_mode', 'builder'),
(1279, 146, '_elementor_template_type', 'wp-page'),
(1280, 146, '_elementor_version', '3.34.4'),
(1281, 146, '_elementor_pro_version', '3.25.4'),
(1282, 146, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1284, 146, '_elementor_page_settings', 'a:0:{}'),
(1288, 147, '_elementor_edit_mode', 'builder'),
(1289, 147, '_elementor_template_type', 'wp-page'),
(1290, 147, '_elementor_version', '3.34.4'),
(1291, 147, '_elementor_pro_version', '3.25.4'),
(1292, 147, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1353, 153, '_wp_page_template', 'elementor_header_footer'),
(1334, 151, '_elementor_edit_mode', 'builder'),
(1335, 151, '_elementor_template_type', 'wp-page'),
(1336, 151, '_elementor_version', '3.34.4'),
(1337, 151, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1338, 151, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1307, 148, '_elementor_page_settings', 'a:0:{}'),
(1310, 149, '_wp_page_template', 'elementor_header_footer'),
(1311, 149, '_elementor_edit_mode', 'builder'),
(1312, 149, '_elementor_template_type', 'wp-page'),
(1313, 149, '_elementor_version', '3.34.4'),
(1314, 149, '_elementor_pro_version', '3.25.4'),
(1315, 149, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1317, 149, '_elementor_page_settings', 'a:0:{}'),
(1320, 150, '_wp_page_template', 'elementor_header_footer'),
(1321, 150, '_elementor_edit_mode', 'builder'),
(1322, 150, '_elementor_template_type', 'wp-page'),
(1323, 150, '_elementor_version', '3.34.4'),
(1324, 150, '_elementor_pro_version', '3.25.4'),
(1325, 150, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1368, 155, '_wp_page_template', 'elementor_header_footer'),
(1369, 155, '_elementor_edit_mode', 'builder'),
(1370, 155, '_elementor_template_type', 'wp-page'),
(1371, 155, '_elementor_version', '3.34.4'),
(1372, 155, '_elementor_pro_version', '3.25.4'),
(1373, 155, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1340, 151, '_elementor_page_settings', 'a:0:{}'),
(1343, 152, '_wp_page_template', 'elementor_header_footer'),
(1344, 152, '_elementor_edit_mode', 'builder'),
(1345, 152, '_elementor_template_type', 'wp-page'),
(1346, 152, '_elementor_version', '3.34.4'),
(1347, 152, '_elementor_pro_version', '3.25.4'),
(1348, 152, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center left\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1350, 152, '_elementor_page_settings', 'a:0:{}'),
(1354, 153, '_elementor_edit_mode', 'builder'),
(1355, 153, '_elementor_template_type', 'wp-page'),
(1356, 153, '_elementor_version', '3.34.4'),
(1357, 153, '_elementor_pro_version', '3.25.4'),
(1358, 153, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1422, 160, '_elementor_edit_mode', 'builder'),
(1401, 158, '_wp_page_template', 'elementor_header_footer'),
(1402, 158, '_elementor_edit_mode', 'builder'),
(1403, 158, '_elementor_template_type', 'wp-page'),
(1404, 158, '_elementor_version', '3.34.4'),
(1405, 158, '_elementor_pro_version', '3.25.4'),
(1406, 158, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-4.jpeg\"},{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1483, 166, '_elementor_edit_mode', 'builder'),
(1375, 155, '_elementor_page_settings', 'a:0:{}'),
(5046, 524, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1378, 156, '_wp_page_template', 'elementor_header_footer'),
(1379, 156, '_elementor_edit_mode', 'builder'),
(1380, 156, '_elementor_template_type', 'wp-page'),
(1381, 156, '_elementor_version', '3.34.4'),
(1382, 156, '_elementor_pro_version', '3.25.4'),
(1383, 156, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1385, 156, '_elementor_page_settings', 'a:0:{}'),
(1421, 160, '_wp_page_template', 'elementor_header_footer'),
(1388, 157, '_wp_page_template', 'elementor_header_footer'),
(1389, 157, '_elementor_edit_mode', 'builder'),
(1390, 157, '_elementor_template_type', 'wp-page'),
(1391, 157, '_elementor_version', '3.34.4'),
(1392, 157, '_elementor_pro_version', '3.25.4'),
(1393, 157, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-4.jpeg\"},{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1434, 161, '_wp_page_template', 'elementor_header_footer'),
(1435, 161, '_elementor_edit_mode', 'builder'),
(1436, 161, '_elementor_template_type', 'wp-page'),
(1437, 161, '_elementor_version', '3.34.4'),
(1438, 161, '_elementor_pro_version', '3.25.4'),
(1439, 161, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1408, 158, '_elementor_page_settings', 'a:0:{}'),
(1411, 159, '_wp_page_template', 'elementor_header_footer'),
(1412, 159, '_elementor_edit_mode', 'builder'),
(1413, 159, '_elementor_template_type', 'wp-page'),
(1414, 159, '_elementor_version', '3.34.4'),
(1415, 159, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1416, 159, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-4.jpeg\"},{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1418, 159, '_elementor_page_settings', 'a:0:{}'),
(1423, 160, '_elementor_template_type', 'wp-page'),
(1424, 160, '_elementor_version', '3.34.4'),
(1425, 160, '_elementor_pro_version', '3.25.4'),
(1426, 160, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1484, 166, '_elementor_template_type', 'wp-page'),
(1485, 166, '_elementor_version', '3.34.4'),
(1486, 166, '_elementor_pro_version', '3.25.4'),
(1487, 166, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1441, 161, '_elementor_page_settings', 'a:0:{}'),
(1444, 162, '_wp_page_template', 'elementor_header_footer'),
(1445, 162, '_elementor_edit_mode', 'builder'),
(1446, 162, '_elementor_template_type', 'wp-page'),
(1447, 162, '_elementor_version', '3.34.4'),
(1448, 162, '_elementor_pro_version', '3.25.4'),
(1449, 162, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1451, 162, '_elementor_page_settings', 'a:0:{}'),
(1454, 163, '_wp_page_template', 'elementor_header_footer'),
(1455, 163, '_elementor_edit_mode', 'builder'),
(1456, 163, '_elementor_template_type', 'wp-page'),
(1457, 163, '_elementor_version', '3.34.4'),
(1458, 163, '_elementor_pro_version', '3.25.4'),
(1459, 163, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1515, 169, '_wp_page_template', 'elementor_header_footer'),
(1516, 169, '_elementor_edit_mode', 'builder'),
(1517, 169, '_elementor_template_type', 'wp-page'),
(1518, 169, '_elementor_version', '3.34.4'),
(1519, 169, '_elementor_pro_version', '3.25.4'),
(1520, 169, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4862, 509, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1467, 164, '_wp_attached_file', '2026/02/Team.jpg'),
(1468, 164, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:16:\"2026/02/Team.jpg\";s:8:\"filesize\";i:62348;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Team-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Team-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5647;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"Team-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54214;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1503, 168, '_elementor_edit_mode', 'builder'),
(1504, 168, '_elementor_template_type', 'wp-page'),
(1505, 168, '_elementor_version', '3.34.4'),
(1506, 168, '_elementor_pro_version', '3.25.4'),
(1507, 168, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1489, 166, '_elementor_page_settings', 'a:0:{}'),
(1492, 167, '_wp_page_template', 'elementor_header_footer'),
(1493, 167, '_elementor_edit_mode', 'builder'),
(1494, 167, '_elementor_template_type', 'wp-page'),
(1495, 167, '_elementor_version', '3.34.4'),
(1496, 167, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1497, 167, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1499, 167, '_elementor_page_settings', 'a:0:{}'),
(1548, 172, '_wp_page_template', 'elementor_header_footer'),
(1549, 172, '_elementor_edit_mode', 'builder'),
(1550, 172, '_elementor_template_type', 'wp-page'),
(1551, 172, '_elementor_version', '3.34.4'),
(1552, 172, '_elementor_pro_version', '3.25.4'),
(1553, 172, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1614, 178, '_wp_page_template', 'elementor_header_footer'),
(1682, 185, '_wp_page_template', 'elementor_header_footer'),
(1817, 198, '_wp_page_template', 'elementor_header_footer'),
(1818, 198, '_elementor_edit_mode', 'builder'),
(1819, 198, '_elementor_template_type', 'wp-page'),
(1522, 169, '_elementor_page_settings', 'a:0:{}'),
(1525, 170, '_wp_page_template', 'elementor_header_footer'),
(1526, 170, '_elementor_edit_mode', 'builder'),
(1527, 170, '_elementor_template_type', 'wp-page'),
(1528, 170, '_elementor_version', '3.34.4'),
(1529, 170, '_elementor_pro_version', '3.25.4'),
(1530, 170, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1532, 170, '_elementor_page_settings', 'a:0:{}'),
(1535, 171, '_wp_page_template', 'elementor_header_footer'),
(1536, 171, '_elementor_edit_mode', 'builder'),
(1537, 171, '_elementor_template_type', 'wp-page'),
(1538, 171, '_elementor_version', '3.34.4'),
(1539, 171, '_elementor_pro_version', '3.25.4'),
(1540, 171, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1581, 175, '_wp_page_template', 'elementor_header_footer'),
(1582, 175, '_elementor_edit_mode', 'builder'),
(1583, 175, '_elementor_template_type', 'wp-page'),
(1584, 175, '_elementor_version', '3.34.4'),
(1585, 175, '_elementor_pro_version', '3.25.4'),
(1586, 175, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1555, 172, '_elementor_page_settings', 'a:0:{}'),
(5040, 524, '_wp_page_template', 'default'),
(5041, 524, '_elementor_edit_mode', 'builder'),
(5042, 524, '_elementor_template_type', 'wp-page'),
(5043, 524, '_elementor_version', '3.34.4'),
(5044, 524, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5045, 524, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F8\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1558, 173, '_wp_page_template', 'elementor_header_footer'),
(1559, 173, '_elementor_edit_mode', 'builder'),
(1560, 173, '_elementor_template_type', 'wp-page'),
(1561, 173, '_elementor_version', '3.34.4'),
(1562, 173, '_elementor_pro_version', '3.25.4'),
(1563, 173, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1565, 173, '_elementor_page_settings', 'a:0:{}'),
(1568, 174, '_wp_page_template', 'elementor_header_footer'),
(1569, 174, '_elementor_edit_mode', 'builder'),
(1570, 174, '_elementor_template_type', 'wp-page'),
(1571, 174, '_elementor_version', '3.34.4'),
(1572, 174, '_elementor_pro_version', '3.25.4'),
(1573, 174, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1634, 180, '_wp_page_template', 'elementor_header_footer'),
(1615, 178, '_elementor_edit_mode', 'builder'),
(1616, 178, '_elementor_template_type', 'wp-page'),
(1617, 178, '_elementor_version', '3.34.4'),
(1618, 178, '_elementor_pro_version', '3.25.4'),
(1619, 178, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1588, 175, '_elementor_page_settings', 'a:0:{}'),
(1591, 176, '_wp_page_template', 'elementor_header_footer'),
(1592, 176, '_elementor_edit_mode', 'builder'),
(1593, 176, '_elementor_template_type', 'wp-page'),
(1594, 176, '_elementor_version', '3.34.4'),
(1595, 176, '_elementor_pro_version', '3.25.4'),
(1596, 176, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1598, 176, '_elementor_page_settings', 'a:0:{}'),
(1601, 177, '_wp_page_template', 'elementor_header_footer'),
(1602, 177, '_elementor_edit_mode', 'builder'),
(1603, 177, '_elementor_template_type', 'wp-page'),
(1604, 177, '_elementor_version', '3.34.4'),
(1605, 177, '_elementor_pro_version', '3.25.4'),
(1606, 177, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1649, 182, '_wp_page_template', 'elementor_header_footer'),
(1650, 182, '_elementor_edit_mode', 'builder'),
(1651, 182, '_elementor_template_type', 'wp-page'),
(1652, 182, '_elementor_version', '3.34.4'),
(1653, 182, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1654, 182, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1621, 178, '_elementor_page_settings', 'a:0:{}'),
(1624, 179, '_wp_page_template', 'elementor_header_footer'),
(1625, 179, '_elementor_edit_mode', 'builder'),
(1626, 179, '_elementor_template_type', 'wp-page'),
(1627, 179, '_elementor_version', '3.34.4'),
(1628, 179, '_elementor_pro_version', '3.25.4'),
(1629, 179, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":111,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1631, 179, '_elementor_page_settings', 'a:0:{}'),
(1635, 180, '_elementor_edit_mode', 'builder'),
(1636, 180, '_elementor_template_type', 'wp-page'),
(1637, 180, '_elementor_version', '3.34.4'),
(1638, 180, '_elementor_pro_version', '3.25.4'),
(1639, 180, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1702, 187, '_wp_page_template', 'elementor_header_footer'),
(1683, 185, '_elementor_edit_mode', 'builder'),
(1684, 185, '_elementor_template_type', 'wp-page'),
(1685, 185, '_elementor_version', '3.34.4'),
(1686, 185, '_elementor_pro_version', '3.25.4'),
(1687, 185, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-119\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1647, 181, '_wp_attached_file', '2026/02/BANNER-30.jpg'),
(1648, 181, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2026/02/BANNER-30.jpg\";s:8:\"filesize\";i:122500;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"BANNER-30-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12252;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"BANNER-30-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71973;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"BANNER-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"BANNER-30-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47026;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"BANNER-30-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1656, 182, '_elementor_page_settings', 'a:0:{}'),
(1659, 183, '_wp_page_template', 'elementor_header_footer'),
(1660, 183, '_elementor_edit_mode', 'builder'),
(1661, 183, '_elementor_template_type', 'wp-page'),
(1662, 183, '_elementor_version', '3.34.4'),
(1663, 183, '_elementor_pro_version', '3.25.4'),
(1664, 183, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1666, 183, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1669, 184, '_wp_page_template', 'elementor_header_footer'),
(1670, 184, '_elementor_edit_mode', 'builder'),
(1671, 184, '_elementor_template_type', 'wp-page'),
(1672, 184, '_elementor_version', '3.34.4'),
(1673, 184, '_elementor_pro_version', '3.25.4'),
(1674, 184, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-119\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1715, 188, '_wp_page_template', 'elementor_header_footer'),
(1716, 188, '_elementor_edit_mode', 'builder'),
(1717, 188, '_elementor_template_type', 'wp-page'),
(1718, 188, '_elementor_version', '3.34.4'),
(1719, 188, '_elementor_pro_version', '3.25.4'),
(1720, 188, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1689, 185, '_elementor_page_settings', 'a:0:{}'),
(5036, 523, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1692, 186, '_wp_page_template', 'elementor_header_footer'),
(1693, 186, '_elementor_edit_mode', 'builder'),
(1694, 186, '_elementor_template_type', 'wp-page'),
(1695, 186, '_elementor_version', '3.34.4'),
(1696, 186, '_elementor_pro_version', '3.25.4'),
(1697, 186, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-119\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1699, 186, '_elementor_page_settings', 'a:0:{}'),
(1703, 187, '_elementor_edit_mode', 'builder'),
(1704, 187, '_elementor_template_type', 'wp-page'),
(1705, 187, '_elementor_version', '3.34.4'),
(1706, 187, '_elementor_pro_version', '3.25.4'),
(1707, 187, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1748, 191, '_wp_page_template', 'elementor_header_footer'),
(1749, 191, '_elementor_edit_mode', 'builder'),
(1750, 191, '_elementor_template_type', 'wp-page'),
(1751, 191, '_elementor_version', '3.34.4'),
(1752, 191, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1753, 191, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1722, 188, '_elementor_page_settings', 'a:0:{}'),
(1725, 189, '_wp_page_template', 'elementor_header_footer'),
(1726, 189, '_elementor_edit_mode', 'builder'),
(1727, 189, '_elementor_template_type', 'wp-page'),
(1728, 189, '_elementor_version', '3.34.4'),
(1729, 189, '_elementor_pro_version', '3.25.4'),
(1730, 189, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1732, 189, '_elementor_page_settings', 'a:0:{}'),
(1735, 190, '_wp_page_template', 'elementor_header_footer'),
(1736, 190, '_elementor_edit_mode', 'builder'),
(1737, 190, '_elementor_template_type', 'wp-page'),
(1738, 190, '_elementor_version', '3.34.4'),
(1739, 190, '_elementor_pro_version', '3.25.4'),
(1740, 190, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1784, 195, '_wp_page_template', 'elementor_header_footer'),
(1785, 195, '_elementor_edit_mode', 'builder'),
(1786, 195, '_elementor_template_type', 'wp-page'),
(1787, 195, '_elementor_version', '3.34.4'),
(1788, 195, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1789, 195, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}]},\"elements\":[{\"id\":\"273687d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"0e6f721\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1755, 191, '_elementor_page_settings', 'a:0:{}'),
(1758, 192, '_wp_page_template', 'elementor_header_footer'),
(1759, 192, '_elementor_edit_mode', 'builder'),
(1760, 192, '_elementor_template_type', 'wp-page'),
(1761, 192, '_elementor_version', '3.34.4'),
(1762, 192, '_elementor_pro_version', '3.25.4'),
(1763, 192, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1765, 192, '_elementor_page_settings', 'a:0:{}'),
(1768, 193, '_wp_page_template', 'elementor_header_footer'),
(1769, 193, '_elementor_edit_mode', 'builder'),
(1770, 193, '_elementor_template_type', 'wp-page'),
(1771, 193, '_elementor_version', '3.34.4'),
(1772, 193, '_elementor_pro_version', '3.25.4'),
(1773, 193, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}]},\"elements\":[{\"id\":\"273687d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"0e6f721\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(5030, 523, '_wp_page_template', 'default'),
(5031, 523, '_elementor_edit_mode', 'builder'),
(5032, 523, '_elementor_template_type', 'wp-page'),
(5033, 523, '_elementor_version', '3.34.4'),
(5034, 523, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5035, 523, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1837, 200, '_wp_page_template', 'elementor_header_footer'),
(1820, 198, '_elementor_version', '3.34.4'),
(1821, 198, '_elementor_pro_version', '3.25.4'),
(1822, 198, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1781, 194, '_wp_attached_file', '2026/02/reservation_15183811.svg'),
(1782, 194, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:11992;s:5:\"width\";i:505;s:6:\"height\";i:505;}'),
(4276, 446, '_wp_attached_file', '2026/02/Ana-Iris-Carmona-Valdes.jpg'),
(4277, 446, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:35:\"2026/02/Ana-Iris-Carmona-Valdes.jpg\";s:8:\"filesize\";i:69202;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Ana-Iris-Carmona-Valdes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Ana-Iris-Carmona-Valdes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5876;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Ana-Iris-Carmona-Valdes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59341;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4317, 453, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\";s:8:\"filesize\";i:46046;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Irma-Maria-Valdes-Sepulveda-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:11560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Irma-Maria-Valdes-Sepulveda-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:5189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Irma-Maria-Valdes-Sepulveda-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:42189;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4316, 453, '_wp_attached_file', '2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg'),
(4318, 454, '_wp_page_template', 'default'),
(4319, 454, '_elementor_edit_mode', 'builder'),
(4320, 454, '_elementor_template_type', 'wp-page'),
(4321, 454, '_elementor_version', '3.34.4'),
(4322, 454, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4323, 454, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1791, 195, '_elementor_page_settings', 'a:0:{}'),
(1794, 196, '_wp_page_template', 'elementor_header_footer'),
(1795, 196, '_elementor_edit_mode', 'builder'),
(1796, 196, '_elementor_template_type', 'wp-page'),
(1797, 196, '_elementor_version', '3.34.4'),
(1798, 196, '_elementor_pro_version', '3.25.4'),
(1799, 196, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}]},\"elements\":[{\"id\":\"273687d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"0e6f721\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1801, 196, '_elementor_page_settings', 'a:0:{}'),
(1804, 197, '_wp_page_template', 'elementor_header_footer'),
(1805, 197, '_elementor_edit_mode', 'builder'),
(1806, 197, '_elementor_template_type', 'wp-page'),
(1807, 197, '_elementor_version', '3.34.4'),
(1808, 197, '_elementor_pro_version', '3.25.4'),
(1809, 197, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1850, 201, '_wp_page_template', 'elementor_header_footer'),
(1851, 201, '_elementor_edit_mode', 'builder'),
(1852, 201, '_elementor_template_type', 'wp-page'),
(1853, 201, '_elementor_version', '3.34.4'),
(1854, 201, '_elementor_pro_version', '3.25.4'),
(1855, 201, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2080, 224, '_elementor_page_settings', 'a:0:{}'),
(1824, 198, '_elementor_page_settings', 'a:0:{}'),
(1827, 199, '_wp_page_template', 'elementor_header_footer'),
(1828, 199, '_elementor_edit_mode', 'builder'),
(1829, 199, '_elementor_template_type', 'wp-page'),
(1830, 199, '_elementor_version', '3.34.4'),
(1831, 199, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1832, 199, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1834, 199, '_elementor_page_settings', 'a:0:{}'),
(5026, 522, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1838, 200, '_elementor_edit_mode', 'builder'),
(1839, 200, '_elementor_template_type', 'wp-page'),
(1840, 200, '_elementor_version', '3.34.4'),
(1841, 200, '_elementor_pro_version', '3.25.4'),
(1842, 200, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1883, 204, '_wp_page_template', 'elementor_header_footer'),
(1884, 204, '_elementor_edit_mode', 'builder'),
(1885, 204, '_elementor_template_type', 'wp-page'),
(1886, 204, '_elementor_version', '3.34.4'),
(1887, 204, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1888, 204, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1857, 201, '_elementor_page_settings', 'a:0:{}'),
(1860, 202, '_wp_page_template', 'elementor_header_footer'),
(1861, 202, '_elementor_edit_mode', 'builder'),
(1862, 202, '_elementor_template_type', 'wp-page'),
(1863, 202, '_elementor_version', '3.34.4'),
(1864, 202, '_elementor_pro_version', '3.25.4'),
(1865, 202, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96e9af8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c97e56\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c78b04c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8aa9b00\"}],\"pp_display_conditions\":[{\"_id\":\"daca19b\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c7d8e8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8cc4473\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2aa67ee\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0db83a\"}],\"pp_display_conditions\":[{\"_id\":\"0b2e58a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"62e2d5f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5148b5f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de48b9d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6552d0c\"}],\"pp_display_conditions\":[{\"_id\":\"e089d74\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1867, 202, '_elementor_page_settings', 'a:0:{}'),
(5053, 525, '_wp_page_template', 'default'),
(5054, 525, '_elementor_edit_mode', 'builder'),
(5055, 525, '_elementor_template_type', 'wp-page'),
(5056, 525, '_elementor_version', '3.34.4'),
(5057, 525, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5058, 525, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F8\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1870, 203, '_wp_page_template', 'elementor_header_footer'),
(1871, 203, '_elementor_edit_mode', 'builder'),
(1872, 203, '_elementor_template_type', 'wp-page'),
(1873, 203, '_elementor_version', '3.34.4'),
(1874, 203, '_elementor_pro_version', '3.25.4'),
(1875, 203, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1936, 209, '_wp_page_template', 'elementor_header_footer'),
(1916, 207, '_wp_page_template', 'elementor_header_footer'),
(1917, 207, '_elementor_edit_mode', 'builder'),
(1918, 207, '_elementor_template_type', 'wp-page'),
(1919, 207, '_elementor_version', '3.34.4'),
(1920, 207, '_elementor_pro_version', '3.25.4'),
(1921, 207, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2156, 233, '_wp_page_template', 'elementor_header_footer'),
(2129, 230, '_wp_page_template', 'elementor_header_footer'),
(2109, 228, '_wp_page_template', 'elementor_header_footer'),
(2110, 228, '_elementor_edit_mode', 'builder'),
(2111, 228, '_elementor_template_type', 'wp-page'),
(2112, 228, '_elementor_version', '3.34.4'),
(2113, 228, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2114, 228, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/family_6861201.svg\",\"id\":219},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2147, 231, '_elementor_page_settings', 'a:0:{}'),
(2148, 232, '_wp_page_template', 'elementor_header_footer'),
(2149, 232, '_elementor_edit_mode', 'builder'),
(2150, 232, '_elementor_template_type', 'wp-page'),
(2151, 232, '_elementor_version', '3.34.4'),
(2152, 232, '_elementor_pro_version', '3.25.4'),
(2153, 232, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1890, 204, '_elementor_page_settings', 'a:0:{}'),
(5013, 521, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1893, 205, '_wp_page_template', 'elementor_header_footer'),
(1894, 205, '_elementor_edit_mode', 'builder'),
(1895, 205, '_elementor_template_type', 'wp-page'),
(1896, 205, '_elementor_version', '3.34.4'),
(1897, 205, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1898, 205, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1900, 205, '_elementor_page_settings', 'a:0:{}'),
(5007, 521, '_wp_page_template', 'default'),
(5008, 521, '_elementor_edit_mode', 'builder'),
(5009, 521, '_elementor_template_type', 'wp-page'),
(5010, 521, '_elementor_version', '3.34.4'),
(5011, 521, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5012, 521, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1903, 206, '_wp_page_template', 'elementor_header_footer'),
(1904, 206, '_elementor_edit_mode', 'builder'),
(1905, 206, '_elementor_template_type', 'wp-page'),
(1906, 206, '_elementor_version', '3.34.4'),
(1907, 206, '_elementor_pro_version', '3.25.4'),
(1908, 206, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5003, 520, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1949, 210, '_wp_page_template', 'elementor_header_footer'),
(1950, 210, '_elementor_edit_mode', 'builder'),
(1951, 210, '_elementor_template_type', 'wp-page'),
(1952, 210, '_elementor_version', '3.34.4'),
(1953, 210, '_elementor_pro_version', '3.25.4'),
(1954, 210, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1923, 207, '_elementor_page_settings', 'a:0:{}'),
(4997, 520, '_wp_page_template', 'default'),
(4998, 520, '_elementor_edit_mode', 'builder'),
(4999, 520, '_elementor_template_type', 'wp-page'),
(5000, 520, '_elementor_version', '3.34.4'),
(5001, 520, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5002, 520, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1926, 208, '_wp_page_template', 'elementor_header_footer'),
(1927, 208, '_elementor_edit_mode', 'builder'),
(1928, 208, '_elementor_template_type', 'wp-page'),
(1929, 208, '_elementor_version', '3.34.4'),
(1930, 208, '_elementor_pro_version', '3.25.4'),
(1931, 208, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1933, 208, '_elementor_page_settings', 'a:0:{}'),
(4993, 519, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1937, 209, '_elementor_edit_mode', 'builder'),
(1938, 209, '_elementor_template_type', 'wp-page'),
(1939, 209, '_elementor_version', '3.34.4'),
(1940, 209, '_elementor_pro_version', '3.25.4'),
(1941, 209, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4973, 518, '_elementor_edit_mode', 'builder'),
(4974, 518, '_elementor_template_type', 'header'),
(4975, 518, '_elementor_version', '3.34.4'),
(4976, 518, '_elementor_pro_version', '3.34.4'),
(4977, 518, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4978, 518, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FCF9F8\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":7,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4965, 517, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4983, 86, '_elementor_page_settings', 'a:0:{}'),
(4984, 86, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:4;s:20:\"flex_justify_content\";i:2;s:8:\"flex_gap\";i:1;s:11:\"boxed_width\";i:1;s:16:\"flex_align_items\";i:1;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:5:{s:7:\"padding\";i:2;s:6:\"margin\";i:1;s:16:\"_flex_align_self\";i:1;s:7:\"z_index\";i:1;s:20:\"e_display_conditions\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:9:\"menu_type\";i:1;s:10:\"full_width\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:4:{s:23:\"section_style_main_menu\";a:1:{s:29:\"pointer_color_menu_item_hover\";i:1;}s:22:\"section_style_dropdown\";a:2:{s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_width\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}s:16:\"style_typography\";a:4:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:4:\"link\";i:1;s:10:\"title_size\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:1;s:26:\"content_vertical_alignment\";i:1;s:10:\"text_align\";i:1;}s:21:\"section_style_content\";a:3:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(4979, 518, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2016, 216, '_elementor_edit_mode', 'builder'),
(1995, 214, '_wp_page_template', 'elementor_header_footer'),
(1996, 214, '_elementor_edit_mode', 'builder'),
(1997, 214, '_elementor_template_type', 'wp-page'),
(1998, 214, '_elementor_version', '3.34.4'),
(1999, 214, '_elementor_pro_version', '3.25.4'),
(2000, 214, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1956, 210, '_elementor_page_settings', 'a:0:{}'),
(5021, 522, '_elementor_edit_mode', 'builder'),
(5022, 522, '_elementor_template_type', 'wp-page'),
(5023, 522, '_elementor_version', '3.34.4'),
(5024, 522, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5025, 522, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4908, 513, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4912, 513, '_elementor_screenshot_failed', '2026-02-02 06:07:20'),
(4931, 515, '_elementor_edit_mode', 'builder'),
(4932, 515, '_elementor_template_type', 'header'),
(4933, 515, '_elementor_version', '3.34.4'),
(4934, 515, '_elementor_pro_version', '3.34.4'),
(4935, 515, '_wp_page_template', 'default'),
(4936, 515, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDF9F9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":1,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4923, 514, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4945, 516, '_elementor_edit_mode', 'builder'),
(4946, 516, '_elementor_template_type', 'header'),
(4947, 516, '_elementor_version', '3.34.4'),
(4948, 516, '_elementor_pro_version', '3.34.4'),
(4949, 516, '_wp_page_template', 'default'),
(4950, 516, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDF9F9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":5,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4937, 515, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4959, 517, '_elementor_edit_mode', 'builder'),
(4960, 517, '_elementor_template_type', 'header'),
(4961, 517, '_elementor_version', '3.34.4'),
(4962, 517, '_elementor_pro_version', '3.34.4'),
(4963, 517, '_wp_page_template', 'default'),
(4964, 517, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDF9F9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":7,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4951, 516, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1959, 211, '_wp_page_template', 'elementor_header_footer'),
(1960, 211, '_elementor_edit_mode', 'builder'),
(1961, 211, '_elementor_template_type', 'wp-page'),
(1962, 211, '_elementor_version', '3.34.4'),
(1963, 211, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1964, 211, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1966, 211, '_elementor_page_settings', 'a:0:{}'),
(2015, 216, '_wp_page_template', 'elementor_header_footer'),
(1969, 212, '_wp_page_template', 'elementor_header_footer'),
(1970, 212, '_elementor_edit_mode', 'builder'),
(1971, 212, '_elementor_template_type', 'wp-page'),
(1972, 212, '_elementor_version', '3.34.4'),
(1973, 212, '_elementor_pro_version', '3.25.4'),
(1974, 212, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4889, 512, '_wp_page_template', 'default'),
(4890, 512, '_elementor_edit_mode', 'builder'),
(4891, 512, '_elementor_template_type', 'wp-page'),
(4892, 512, '_elementor_version', '3.34.4'),
(4893, 512, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4894, 512, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4895, 512, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2060, 223, '_wp_page_template', 'elementor_header_footer'),
(2040, 221, '_wp_page_template', 'elementor_header_footer'),
(2041, 221, '_elementor_edit_mode', 'builder'),
(2042, 221, '_elementor_template_type', 'wp-page'),
(2043, 221, '_elementor_version', '3.34.4'),
(2044, 221, '_elementor_pro_version', '3.25.4'),
(2045, 221, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4208, 440, '_wp_page_template', 'default'),
(4209, 440, '_elementor_edit_mode', 'builder'),
(2076, 224, '_elementor_version', '3.34.4'),
(2077, 224, '_elementor_pro_version', '3.25.4'),
(2078, 224, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/family_6861201.svg\",\"id\":219},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2028, 217, '_wp_attached_file', '2026/02/relaxation_247460.svg'),
(2029, 217, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2636;s:5:\"width\";i:506;s:6:\"height\";i:506;}'),
(2073, 224, '_wp_page_template', 'elementor_header_footer'),
(2074, 224, '_elementor_edit_mode', 'builder'),
(2075, 224, '_elementor_template_type', 'wp-page'),
(4152, 435, '_wp_page_template', 'default'),
(4153, 435, '_elementor_edit_mode', 'builder'),
(4154, 435, '_elementor_template_type', 'wp-page'),
(4155, 435, '_elementor_version', '3.34.4'),
(4156, 435, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4157, 435, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"0163d33\"},{\"slide_title\":\"Slide #2\",\"_id\":\"3bf53af\"},{\"slide_title\":\"Slide #3\",\"_id\":\"0de6dd6\"},{\"slide_title\":\"Slide #3\",\"_id\":\"ca9455e\"}],\"slides_to_show\":\"4\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[{\"id\":\"405afdf\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"c12ff69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c5b98d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4849e1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"e4bdc1f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #2\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c42fcce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"45dcfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e09ce13\"}],\"pp_display_conditions\":[{\"_id\":\"9fcefdf\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"a23e5e0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"b40eccb\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2017, 216, '_elementor_template_type', 'wp-page'),
(2018, 216, '_elementor_version', '3.34.4'),
(2019, 216, '_elementor_pro_version', '3.25.4'),
(2020, 216, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2002, 214, '_elementor_page_settings', 'a:0:{}'),
(2005, 215, '_wp_page_template', 'elementor_header_footer'),
(2006, 215, '_elementor_edit_mode', 'builder'),
(2007, 215, '_elementor_template_type', 'wp-page'),
(2008, 215, '_elementor_version', '3.34.4'),
(2009, 215, '_elementor_pro_version', '3.25.4'),
(2010, 215, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2012, 215, '_elementor_page_settings', 'a:0:{}'),
(4879, 511, '_wp_page_template', 'default'),
(4880, 511, '_elementor_edit_mode', 'builder'),
(4881, 511, '_elementor_template_type', 'wp-page'),
(4882, 511, '_elementor_version', '3.34.4'),
(4883, 511, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4884, 511, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4885, 511, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2031, 218, '_wp_attached_file', '2026/02/donor_17288347.svg'),
(2032, 218, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3003;s:5:\"width\";i:100;s:6:\"height\";i:100;}'),
(2034, 219, '_wp_attached_file', '2026/02/family_6861201.svg'),
(2035, 219, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2536;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2037, 220, '_wp_attached_file', '2026/02/spa_8953891.svg'),
(2038, 220, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:10961;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2047, 221, '_elementor_page_settings', 'a:0:{}'),
(2050, 222, '_wp_page_template', 'elementor_header_footer'),
(2051, 222, '_elementor_edit_mode', 'builder'),
(2052, 222, '_elementor_template_type', 'wp-page'),
(2053, 222, '_elementor_version', '3.34.4'),
(2054, 222, '_elementor_pro_version', '3.25.4'),
(2055, 222, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/reservation_15183811.svg\",\"id\":194},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2057, 222, '_elementor_page_settings', 'a:0:{}'),
(4987, 519, '_wp_page_template', 'default'),
(4988, 519, '_elementor_edit_mode', 'builder'),
(4989, 519, '_elementor_template_type', 'wp-page'),
(4990, 519, '_elementor_version', '3.34.4'),
(4991, 519, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4992, 519, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\"},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4875, 510, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2061, 223, '_elementor_edit_mode', 'builder'),
(2062, 223, '_elementor_template_type', 'wp-page'),
(2063, 223, '_elementor_version', '3.34.4'),
(2064, 223, '_elementor_pro_version', '3.25.4'),
(2065, 223, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/family_6861201.svg\",\"id\":219},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2083, 225, '_wp_page_template', 'elementor_header_footer'),
(2084, 225, '_elementor_edit_mode', 'builder'),
(2085, 225, '_elementor_template_type', 'wp-page'),
(2086, 225, '_elementor_version', '3.34.4'),
(2087, 225, '_elementor_pro_version', '3.25.4'),
(2088, 225, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}]},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/family_6861201.svg\",\"id\":219},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2090, 225, '_elementor_page_settings', 'a:0:{}'),
(4856, 509, '_wp_page_template', 'default'),
(4857, 509, '_elementor_edit_mode', 'builder'),
(4858, 509, '_elementor_template_type', 'wp-page'),
(4859, 509, '_elementor_version', '3.34.4'),
(4860, 509, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4861, 509, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2093, 226, '_wp_page_template', 'elementor_header_footer'),
(2094, 226, '_elementor_edit_mode', 'builder'),
(2095, 226, '_elementor_template_type', 'wp-page'),
(2096, 226, '_elementor_version', '3.34.4'),
(2097, 226, '_elementor_pro_version', '3.25.4'),
(2098, 226, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/family_6861201.svg\",\"id\":219},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2140, 231, '_wp_page_template', 'elementor_header_footer'),
(2141, 231, '_elementor_edit_mode', 'builder'),
(2142, 231, '_elementor_template_type', 'wp-page'),
(2143, 231, '_elementor_version', '3.34.4'),
(2144, 231, '_elementor_pro_version', '3.25.4'),
(2145, 231, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2106, 227, '_wp_attached_file', '2026/02/medical_14528474.svg'),
(2107, 227, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1851;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2116, 228, '_elementor_page_settings', 'a:0:{}'),
(4852, 508, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2119, 229, '_wp_page_template', 'elementor_header_footer'),
(2120, 229, '_elementor_edit_mode', 'builder'),
(2121, 229, '_elementor_template_type', 'wp-page'),
(2122, 229, '_elementor_version', '3.34.4'),
(2123, 229, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2124, 229, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/family_6861201.svg\",\"id\":219},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2126, 229, '_elementor_page_settings', 'a:0:{}'),
(2130, 230, '_elementor_edit_mode', 'builder'),
(2131, 230, '_elementor_template_type', 'wp-page'),
(2132, 230, '_elementor_version', '3.34.4'),
(2133, 230, '_elementor_pro_version', '3.25.4'),
(2134, 230, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4846, 508, '_wp_page_template', 'default'),
(4847, 508, '_elementor_edit_mode', 'builder'),
(4848, 508, '_elementor_template_type', 'wp-page'),
(4849, 508, '_elementor_version', '3.34.4'),
(4850, 508, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4851, 508, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2155, 232, '_elementor_page_settings', 'a:0:{}'),
(2157, 233, '_elementor_edit_mode', 'builder'),
(2158, 233, '_elementor_template_type', 'wp-page'),
(2159, 233, '_elementor_version', '3.34.4'),
(2160, 233, '_elementor_pro_version', '3.25.4'),
(2161, 233, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2167, 234, '_wp_page_template', 'elementor_header_footer'),
(2168, 234, '_elementor_edit_mode', 'builder'),
(2169, 234, '_elementor_template_type', 'wp-page'),
(2170, 234, '_elementor_version', '3.34.4'),
(2171, 234, '_elementor_pro_version', '3.25.4'),
(2172, 234, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2220, 239, '_wp_page_template', 'elementor_header_footer'),
(2200, 237, '_wp_page_template', 'elementor_header_footer'),
(2201, 237, '_elementor_edit_mode', 'builder'),
(2202, 237, '_elementor_template_type', 'wp-page'),
(2203, 237, '_elementor_version', '3.34.4'),
(2204, 237, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2205, 237, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2528, 267, '_wp_page_template', 'elementor_header_footer'),
(2529, 267, '_elementor_edit_mode', 'builder'),
(2530, 267, '_elementor_template_type', 'wp-page'),
(2531, 267, '_elementor_version', '3.34.4'),
(2532, 267, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2533, 267, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Royal Health&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2535, 267, '_elementor_page_settings', 'a:0:{}'),
(2536, 268, '_wp_page_template', 'elementor_header_footer'),
(2537, 268, '_elementor_edit_mode', 'builder'),
(2538, 268, '_elementor_template_type', 'wp-page'),
(2539, 268, '_elementor_version', '3.34.4'),
(2540, 268, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2541, 268, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Royal Health&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2174, 234, '_elementor_page_settings', 'a:0:{}'),
(2177, 235, '_wp_page_template', 'elementor_header_footer'),
(2178, 235, '_elementor_edit_mode', 'builder'),
(2179, 235, '_elementor_template_type', 'wp-page'),
(2180, 235, '_elementor_version', '3.34.4'),
(2181, 235, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2182, 235, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2184, 235, '_elementor_page_settings', 'a:0:{}'),
(4842, 507, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2187, 236, '_wp_page_template', 'elementor_header_footer'),
(2188, 236, '_elementor_edit_mode', 'builder'),
(2189, 236, '_elementor_template_type', 'wp-page'),
(2190, 236, '_elementor_version', '3.34.4'),
(2191, 236, '_elementor_pro_version', '3.25.4'),
(2192, 236, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2253, 242, '_wp_page_template', 'elementor_header_footer'),
(2233, 240, '_wp_page_template', 'elementor_header_footer'),
(2234, 240, '_elementor_edit_mode', 'builder'),
(2235, 240, '_elementor_template_type', 'wp-page'),
(2236, 240, '_elementor_version', '3.34.4'),
(2237, 240, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2238, 240, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2207, 237, '_elementor_page_settings', 'a:0:{}'),
(2210, 238, '_wp_page_template', 'elementor_header_footer'),
(2211, 238, '_elementor_edit_mode', 'builder'),
(2212, 238, '_elementor_template_type', 'wp-page'),
(2213, 238, '_elementor_version', '3.34.4'),
(2214, 238, '_elementor_pro_version', '3.25.4'),
(2215, 238, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2217, 238, '_elementor_page_settings', 'a:0:{}'),
(2221, 239, '_elementor_edit_mode', 'builder'),
(2222, 239, '_elementor_template_type', 'wp-page'),
(2223, 239, '_elementor_version', '3.34.4'),
(2224, 239, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2225, 239, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2286, 245, '_wp_page_template', 'elementor_header_footer'),
(2266, 243, '_wp_page_template', 'elementor_header_footer'),
(2267, 243, '_elementor_edit_mode', 'builder'),
(2268, 243, '_elementor_template_type', 'wp-page'),
(2269, 243, '_elementor_version', '3.34.4'),
(2270, 243, '_elementor_pro_version', '3.25.4'),
(2271, 243, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAFD1\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2240, 240, '_elementor_page_settings', 'a:0:{}'),
(4821, 505, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2243, 241, '_wp_page_template', 'elementor_header_footer'),
(2244, 241, '_elementor_edit_mode', 'builder'),
(2245, 241, '_elementor_template_type', 'wp-page'),
(2246, 241, '_elementor_version', '3.34.4'),
(2247, 241, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2248, 241, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2250, 241, '_elementor_page_settings', 'a:0:{}'),
(2254, 242, '_elementor_edit_mode', 'builder'),
(2255, 242, '_elementor_template_type', 'wp-page'),
(2256, 242, '_elementor_version', '3.34.4'),
(2257, 242, '_elementor_pro_version', '3.25.4'),
(2258, 242, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAFD1\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(4815, 505, '_wp_page_template', 'default'),
(4816, 505, '_elementor_edit_mode', 'builder'),
(4817, 505, '_elementor_template_type', 'wp-page'),
(4818, 505, '_elementor_version', '3.34.4'),
(4819, 505, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4820, 505, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2319, 248, '_wp_page_template', 'elementor_header_footer'),
(2299, 246, '_wp_page_template', 'elementor_header_footer'),
(2300, 246, '_elementor_edit_mode', 'builder'),
(2301, 246, '_elementor_template_type', 'wp-page'),
(2302, 246, '_elementor_version', '3.34.4'),
(2303, 246, '_elementor_pro_version', '3.25.4'),
(2304, 246, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF8C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2273, 243, '_elementor_page_settings', 'a:0:{}'),
(4802, 502, '_wp_attached_file', '2026/02/New-Project-27.jpg'),
(4803, 502, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1555;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2026/02/New-Project-27.jpg\";s:8:\"filesize\";i:163616;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-27-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14063;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"New-Project-27-1024x659.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6805;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-27-768x494.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67087;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"New-Project-27-1536x988.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4804, 503, '_wp_attached_file', '2026/02/New-Project-28.jpg'),
(4805, 503, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1555;s:6:\"height\";i:850;s:4:\"file\";s:26:\"2026/02/New-Project-28.jpg\";s:8:\"filesize\";i:146857;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-28-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12740;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"New-Project-28-1024x560.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7089;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-28-768x420.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60317;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"New-Project-28-1536x840.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2276, 244, '_wp_page_template', 'elementor_header_footer'),
(2277, 244, '_elementor_edit_mode', 'builder'),
(2278, 244, '_elementor_template_type', 'wp-page'),
(2279, 244, '_elementor_version', '3.34.4'),
(2280, 244, '_elementor_pro_version', '3.25.4'),
(2281, 244, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAFD1\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2283, 244, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4812, 504, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2287, 245, '_elementor_edit_mode', 'builder'),
(2288, 245, '_elementor_template_type', 'wp-page'),
(2289, 245, '_elementor_version', '3.34.4'),
(2290, 245, '_elementor_pro_version', '3.25.4'),
(2291, 245, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF8C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2352, 251, '_wp_page_template', 'elementor_header_footer'),
(2332, 249, '_wp_page_template', 'elementor_header_footer'),
(2333, 249, '_elementor_edit_mode', 'builder'),
(2334, 249, '_elementor_template_type', 'wp-page'),
(2335, 249, '_elementor_version', '3.34.4'),
(2336, 249, '_elementor_pro_version', '3.25.4'),
(2337, 249, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2306, 246, '_elementor_page_settings', 'a:0:{}'),
(2309, 247, '_wp_page_template', 'elementor_header_footer'),
(2310, 247, '_elementor_edit_mode', 'builder'),
(2311, 247, '_elementor_template_type', 'wp-page'),
(2312, 247, '_elementor_version', '3.34.4'),
(2313, 247, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2314, 247, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF8C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2316, 247, '_elementor_page_settings', 'a:0:{}'),
(4756, 497, '_elementor_screenshot_failed', '2026-02-02 06:07:38'),
(4784, 500, '_elementor_data', '[{\"id\":\"0dda452\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#011433\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b874717\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ae645e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e866901\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"69a4de6\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"007e33a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"da95537\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91264ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d298184\"}],\"pp_display_conditions\":[{\"_id\":\"eae4e56\"}]},\"elements\":[{\"id\":\"7466244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6a84a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ef1dacc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fa88eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5800788\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bfd3c83\"}],\"pp_display_conditions\":[{\"_id\":\"6e5511f\"}]},\"elements\":[{\"id\":\"562d725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b9464b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f910dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a852eaa\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"54711cf\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1702fff\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"90f1ccc\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5d38fc4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"57c90e5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"bd412b7\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/royalhealthmed\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"943ae87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"e2ad508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"08cf145\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8408cd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e5b2e2\"}],\"pp_display_conditions\":[{\"_id\":\"688d8d0\"}]},\"elements\":[{\"id\":\"4252160\",\"elType\":\"widget\",\"settings\":{\"address\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"height\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"344b433\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d68907\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#011433D4\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7b6bf96\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e73d682\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"334faa9\"}],\"pp_display_conditions\":[{\"_id\":\"87922c8\"}]},\"elements\":[{\"id\":\"b760e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 Royal Health Medical Center. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"cb4bc5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4785, 500, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4787, 307, '_elementor_page_settings', 'a:0:{}'),
(4788, 307, '_elementor_controls_usage', 'a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:1:{s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4830, 506, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2320, 248, '_elementor_edit_mode', 'builder'),
(2321, 248, '_elementor_template_type', 'wp-page'),
(2322, 248, '_elementor_version', '3.34.4'),
(2323, 248, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2324, 248, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(4721, 495, '_wp_page_template', 'elementor_header_footer'),
(4722, 495, '_elementor_edit_mode', 'builder'),
(4723, 495, '_elementor_template_type', 'wp-page'),
(4724, 495, '_elementor_version', '3.34.4'),
(4725, 495, '_elementor_pro_version', '3.25.4'),
(4726, 495, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4727, 495, '_elementor_page_settings', 'a:0:{}'),
(4731, 496, '_wp_page_template', 'elementor_header_footer'),
(4732, 496, '_elementor_edit_mode', 'builder'),
(4733, 496, '_elementor_template_type', 'wp-page'),
(4734, 496, '_elementor_version', '3.34.4'),
(4735, 496, '_elementor_pro_version', '3.25.4'),
(4736, 496, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.\\n\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a2522b2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"7cfd04e\"},{\"text\":\"The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"aa1a5fa\"},{\"text\":\"Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"54d49e9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b796380\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4752, 497, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2385, 254, '_wp_page_template', 'elementor_header_footer'),
(2365, 252, '_wp_page_template', 'elementor_header_footer'),
(2366, 252, '_elementor_edit_mode', 'builder'),
(2367, 252, '_elementor_template_type', 'wp-page'),
(2368, 252, '_elementor_version', '3.34.4'),
(2369, 252, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2370, 252, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2339, 249, '_elementor_page_settings', 'a:0:{}'),
(4717, 494, '_elementor_page_settings', 'a:0:{}'),
(2342, 250, '_wp_page_template', 'elementor_header_footer'),
(2343, 250, '_elementor_edit_mode', 'builder'),
(2344, 250, '_elementor_template_type', 'wp-page'),
(2345, 250, '_elementor_version', '3.34.4'),
(2346, 250, '_elementor_pro_version', '3.25.4'),
(2347, 250, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2349, 250, '_elementor_page_settings', 'a:0:{}'),
(4740, 38, '_elementor_page_settings', 'a:0:{}'),
(4741, 38, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(2353, 251, '_elementor_edit_mode', 'builder'),
(2354, 251, '_elementor_template_type', 'wp-page'),
(2355, 251, '_elementor_version', '3.34.4'),
(2356, 251, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2357, 251, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2418, 257, '_wp_page_template', 'elementor_header_footer'),
(2398, 255, '_wp_page_template', 'elementor_header_footer'),
(2399, 255, '_elementor_edit_mode', 'builder'),
(2400, 255, '_elementor_template_type', 'wp-page'),
(2401, 255, '_elementor_version', '3.34.4'),
(2402, 255, '_elementor_pro_version', '3.25.4'),
(2403, 255, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2372, 252, '_elementor_page_settings', 'a:0:{}'),
(4836, 507, '_wp_page_template', 'default'),
(4837, 507, '_elementor_edit_mode', 'builder'),
(4838, 507, '_elementor_template_type', 'wp-page'),
(4839, 507, '_elementor_version', '3.34.4'),
(4840, 507, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4841, 507, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2375, 253, '_wp_page_template', 'elementor_header_footer'),
(2376, 253, '_elementor_edit_mode', 'builder'),
(2377, 253, '_elementor_template_type', 'wp-page'),
(2378, 253, '_elementor_version', '3.34.4'),
(2379, 253, '_elementor_pro_version', '3.25.4'),
(2380, 253, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2382, 253, '_elementor_page_settings', 'a:0:{}'),
(2386, 254, '_elementor_edit_mode', 'builder'),
(2387, 254, '_elementor_template_type', 'wp-page'),
(2388, 254, '_elementor_version', '3.34.4'),
(2389, 254, '_elementor_pro_version', '3.25.4'),
(2390, 254, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(4684, 493, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2431, 258, '_wp_page_template', 'elementor_header_footer'),
(2432, 258, '_elementor_edit_mode', 'builder'),
(2433, 258, '_elementor_template_type', 'wp-page'),
(2434, 258, '_elementor_version', '3.34.4'),
(2435, 258, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2436, 258, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2405, 255, '_elementor_page_settings', 'a:0:{}'),
(4824, 506, '_wp_page_template', 'default'),
(4678, 493, '_wp_page_template', 'default'),
(4679, 493, '_elementor_edit_mode', 'builder'),
(4680, 493, '_elementor_template_type', 'wp-page'),
(4681, 493, '_elementor_version', '3.34.4'),
(4682, 493, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4683, 493, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2408, 256, '_wp_page_template', 'elementor_header_footer'),
(2409, 256, '_elementor_edit_mode', 'builder'),
(2410, 256, '_elementor_template_type', 'wp-page'),
(2411, 256, '_elementor_version', '3.34.4'),
(2412, 256, '_elementor_pro_version', '3.25.4'),
(2413, 256, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2415, 256, '_elementor_page_settings', 'a:0:{}'),
(2419, 257, '_elementor_edit_mode', 'builder'),
(2420, 257, '_elementor_template_type', 'wp-page'),
(2421, 257, '_elementor_version', '3.34.4'),
(2422, 257, '_elementor_pro_version', '3.25.4'),
(2423, 257, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2484, 263, '_wp_page_template', 'elementor_header_footer'),
(2464, 261, '_wp_page_template', 'elementor_header_footer'),
(2465, 261, '_elementor_edit_mode', 'builder'),
(2466, 261, '_elementor_template_type', 'wp-page'),
(2467, 261, '_elementor_version', '3.34.4'),
(2468, 261, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2469, 261, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"pp_display_conditions\":[{\"_id\":\"5c51698\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"pp_display_conditions\":[{\"_id\":\"59baaec\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2438, 258, '_elementor_page_settings', 'a:0:{}'),
(4674, 492, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2441, 259, '_wp_page_template', 'elementor_header_footer'),
(2442, 259, '_elementor_edit_mode', 'builder'),
(2443, 259, '_elementor_template_type', 'wp-page'),
(2444, 259, '_elementor_version', '3.34.4'),
(2445, 259, '_elementor_pro_version', '3.25.4'),
(2446, 259, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(2448, 259, '_elementor_page_settings', 'a:0:{}'),
(4668, 492, '_wp_page_template', 'default'),
(4669, 492, '_elementor_edit_mode', 'builder'),
(4670, 492, '_elementor_template_type', 'wp-page'),
(4671, 492, '_elementor_version', '3.34.4'),
(4672, 492, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4673, 492, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2451, 260, '_wp_page_template', 'elementor_header_footer'),
(2452, 260, '_elementor_edit_mode', 'builder'),
(2453, 260, '_elementor_template_type', 'wp-page'),
(2454, 260, '_elementor_version', '3.34.4'),
(2455, 260, '_elementor_pro_version', '3.25.4'),
(2456, 260, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"pp_display_conditions\":[{\"_id\":\"5c51698\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"pp_display_conditions\":[{\"_id\":\"59baaec\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2497, 264, '_wp_page_template', 'elementor_header_footer'),
(2498, 264, '_elementor_edit_mode', 'builder'),
(2499, 264, '_elementor_template_type', 'wp-page'),
(2500, 264, '_elementor_version', '3.34.4'),
(2501, 264, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2502, 264, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"pp_display_conditions\":[{\"_id\":\"5c51698\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"pp_display_conditions\":[{\"_id\":\"59baaec\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2471, 261, '_elementor_page_settings', 'a:0:{}'),
(4664, 491, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2474, 262, '_wp_page_template', 'elementor_header_footer'),
(2475, 262, '_elementor_edit_mode', 'builder'),
(2476, 262, '_elementor_template_type', 'wp-page'),
(2477, 262, '_elementor_version', '3.34.4'),
(2478, 262, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2479, 262, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"pp_display_conditions\":[{\"_id\":\"5c51698\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"pp_display_conditions\":[{\"_id\":\"59baaec\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2481, 262, '_elementor_page_settings', 'a:0:{}'),
(2485, 263, '_elementor_edit_mode', 'builder'),
(2486, 263, '_elementor_template_type', 'wp-page'),
(2487, 263, '_elementor_version', '3.34.4'),
(2488, 263, '_elementor_pro_version', '3.25.4'),
(2489, 263, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"pp_display_conditions\":[{\"_id\":\"5c51698\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"pp_display_conditions\":[{\"_id\":\"59baaec\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5858, 599, '_wp_page_template', 'elementor_header_footer'),
(5860, 599, '_elementor_edit_mode', 'builder'),
(5861, 599, '_elementor_template_type', 'wp-page'),
(5862, 599, '_elementor_version', '3.34.4'),
(5863, 599, '_elementor_pro_version', '3.34.4'),
(5864, 599, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5904, 605, '_wp_page_template', 'elementor_header_footer'),
(5888, 603, '_wp_page_template', 'elementor_header_footer'),
(5890, 603, '_elementor_edit_mode', 'builder'),
(5891, 603, '_elementor_template_type', 'wp-page'),
(5892, 603, '_elementor_version', '3.34.4'),
(5893, 603, '_elementor_pro_version', '3.34.4'),
(5894, 603, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"},{\"title\":\"Yermina Dumas Nico\",\"subtitle\":\"\",\"description\":\"<p>Phlebotomist<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"85466fa\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5886, 602, '_wp_attached_file', '2026/02/Untitled-5871.jpg'),
(5887, 602, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:700;s:6:\"height\";i:700;s:4:\"file\";s:25:\"2026/02/Untitled-5871.jpg\";s:8:\"filesize\";i:251304;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Untitled-5871-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27551;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Untitled-5871-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17815;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5895, 603, '_elementor_page_settings', 'a:0:{}'),
(5896, 604, '_wp_page_template', 'elementor_header_footer'),
(4656, 490, '_wp_attached_file', '2026/02/Roman-Martinez-Faife-1.jpg'),
(4657, 490, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:34:\"2026/02/Roman-Martinez-Faife-1.jpg\";s:8:\"filesize\";i:61077;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Roman-Martinez-Faife-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:11096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Roman-Martinez-Faife-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:5014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Roman-Martinez-Faife-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:48994;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2504, 264, '_elementor_page_settings', 'a:0:{}'),
(4554, 479, '_elementor_edit_mode', 'builder'),
(4555, 479, '_elementor_template_type', 'wp-page'),
(4556, 479, '_elementor_version', '3.34.4'),
(4557, 479, '_elementor_pro_version', '3.25.4'),
(4558, 479, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2507, 265, '_wp_page_template', 'elementor_header_footer'),
(2508, 265, '_elementor_edit_mode', 'builder'),
(2509, 265, '_elementor_template_type', 'wp-page'),
(2510, 265, '_elementor_version', '3.34.4'),
(2511, 265, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2512, 265, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"pp_display_conditions\":[{\"_id\":\"5c51698\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"pp_display_conditions\":[{\"_id\":\"59baaec\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2514, 265, '_elementor_page_settings', 'a:0:{}'),
(4549, 478, '_elementor_page_settings', 'a:0:{}'),
(2517, 266, '_wp_page_template', 'elementor_header_footer'),
(2518, 266, '_elementor_edit_mode', 'builder'),
(2519, 266, '_elementor_template_type', 'wp-page'),
(2520, 266, '_elementor_version', '3.34.4'),
(2521, 266, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2522, 266, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Royal Health&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4543, 478, '_wp_page_template', 'elementor_header_footer'),
(4544, 478, '_elementor_edit_mode', 'builder'),
(4545, 478, '_elementor_template_type', 'wp-page'),
(4546, 478, '_elementor_version', '3.34.4'),
(4547, 478, '_elementor_pro_version', '3.25.4'),
(4548, 478, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2543, 268, '_elementor_page_settings', 'a:0:{}'),
(2544, 269, '_wp_page_template', 'elementor_header_footer'),
(2545, 269, '_elementor_edit_mode', 'builder'),
(2546, 269, '_elementor_template_type', 'wp-page'),
(2547, 269, '_elementor_version', '3.34.4'),
(2548, 269, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2549, 269, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4148, 434, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2553, 270, '_wp_page_template', 'elementor_header_footer'),
(2554, 270, '_elementor_edit_mode', 'builder'),
(2555, 270, '_elementor_template_type', 'wp-page'),
(2556, 270, '_elementor_version', '3.34.4'),
(2557, 270, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2558, 270, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2560, 270, '_elementor_page_settings', 'a:0:{}'),
(2561, 271, '_wp_page_template', 'elementor_header_footer'),
(2562, 271, '_elementor_edit_mode', 'builder'),
(2563, 271, '_elementor_template_type', 'wp-page'),
(2564, 271, '_elementor_version', '3.34.4'),
(2565, 271, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2566, 271, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2568, 271, '_elementor_page_settings', 'a:0:{}'),
(2569, 272, '_wp_page_template', 'elementor_header_footer'),
(2570, 272, '_elementor_edit_mode', 'builder'),
(2571, 272, '_elementor_template_type', 'wp-page'),
(2572, 272, '_elementor_version', '3.34.4'),
(2573, 272, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2574, 272, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2600, 275, '_wp_page_template', 'elementor_header_footer'),
(2580, 273, '_wp_page_template', 'elementor_header_footer'),
(2581, 273, '_elementor_edit_mode', 'builder'),
(2582, 273, '_elementor_template_type', 'wp-page'),
(2583, 273, '_elementor_version', '3.34.4'),
(2584, 273, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2585, 273, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2694, 287, '_wp_page_template', 'default'),
(2695, 287, '_elementor_edit_mode', 'builder'),
(2696, 287, '_elementor_template_type', 'wp-page'),
(2697, 287, '_elementor_version', '3.34.4'),
(2609, 14, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2646, 280, '_wp_page_template', 'elementor_header_footer'),
(2647, 280, '_elementor_edit_mode', 'builder'),
(2648, 280, '_elementor_template_type', 'wp-page'),
(2649, 280, '_elementor_version', '3.34.4'),
(2650, 280, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2651, 280, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2762, 293, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2763, 294, '_wp_page_template', 'default'),
(2764, 294, '_elementor_edit_mode', 'builder'),
(2765, 294, '_elementor_template_type', 'wp-page'),
(2766, 294, '_elementor_version', '3.34.4'),
(2767, 294, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2768, 294, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2587, 273, '_elementor_page_settings', 'a:0:{}'),
(4562, 36, '_elementor_page_settings', 'a:0:{}'),
(4563, 36, '_elementor_controls_usage', 'a:3:{s:8:\"icon-box\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:5;s:4:\"view\";i:5;s:10:\"title_text\";i:5;s:16:\"description_text\";i:5;s:10:\"title_size\";i:5;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:2:{s:10:\"icon_space\";i:5;s:18:\"title_bottom_space\";i:5;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:5;s:12:\"icon_padding\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:5;s:13:\"selected_icon\";i:5;s:10:\"icon_align\";i:5;s:4:\"link\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:5;s:16:\"background_color\";i:5;s:12:\"text_padding\";i:5;s:21:\"typography_typography\";i:5;s:26:\"typography_text_decoration\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:6;s:13:\"content_width\";i:5;s:5:\"width\";i:5;s:8:\"flex_gap\";i:1;s:20:\"flex_justify_content\";i:1;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:6;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:13:\"border_radius\";i:5;s:12:\"border_color\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:5;}}}}}'),
(4565, 34, '_elementor_edit_mode', 'builder'),
(4566, 34, '_astra_content_layout_flag', 'disabled'),
(4567, 34, 'ast-title-bar-display', 'disabled'),
(4568, 34, '_elementor_template_type', 'wp-page'),
(4569, 34, '_elementor_version', '3.34.4'),
(4570, 34, '_elementor_pro_version', '3.34.4'),
(4594, 34, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"},{\"title\":\"Yermina Dumas Nico\",\"subtitle\":\"\",\"description\":\"<p>Phlebotomist<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Untitled-5871.jpg\",\"id\":602,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"85466fa\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4601, 483, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}]},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"President\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"APRN\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4600, 483, '_elementor_pro_version', '3.34.4'),
(4599, 483, '_elementor_version', '3.34.4'),
(4595, 483, '_wp_page_template', 'elementor_header_footer'),
(4597, 483, '_elementor_edit_mode', 'builder'),
(4598, 483, '_elementor_template_type', 'wp-page'),
(4580, 481, '_wp_page_template', 'elementor_header_footer'),
(4582, 481, '_elementor_edit_mode', 'builder'),
(4583, 481, '_elementor_template_type', 'wp-page'),
(4584, 481, '_elementor_version', '3.34.4'),
(4585, 481, '_elementor_pro_version', '3.34.4'),
(4586, 481, '_elementor_page_settings', 'a:0:{}'),
(4587, 482, '_wp_page_template', 'elementor_header_footer'),
(4589, 482, '_elementor_edit_mode', 'builder'),
(4590, 482, '_elementor_template_type', 'wp-page'),
(4591, 482, '_elementor_version', '3.34.4'),
(4592, 482, '_elementor_pro_version', '3.34.4'),
(4593, 482, '_elementor_page_settings', 'a:0:{}'),
(4604, 484, '_wp_page_template', 'elementor_header_footer'),
(4606, 484, '_elementor_edit_mode', 'builder'),
(4607, 484, '_elementor_template_type', 'wp-page'),
(4608, 484, '_elementor_version', '3.34.4'),
(4609, 484, '_elementor_pro_version', '3.34.4'),
(4610, 484, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}]},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"President\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"APRN\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4611, 484, '_elementor_page_settings', 'a:0:{}'),
(4612, 485, '_wp_page_template', 'elementor_header_footer'),
(4614, 485, '_elementor_edit_mode', 'builder'),
(4615, 485, '_elementor_template_type', 'wp-page'),
(4616, 485, '_elementor_version', '3.34.4'),
(4617, 485, '_elementor_pro_version', '3.34.4'),
(4618, 485, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}]},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"President\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"APRN\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4619, 485, '_elementor_page_settings', 'a:0:{}'),
(4620, 486, '_wp_page_template', 'elementor_header_footer'),
(4622, 486, '_elementor_edit_mode', 'builder'),
(4623, 486, '_elementor_template_type', 'wp-page'),
(4624, 486, '_elementor_version', '3.34.4'),
(4625, 486, '_elementor_pro_version', '3.34.4'),
(4626, 486, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"President\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"APRN\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4539, 477, '_elementor_page_settings', 'a:0:{}'),
(2590, 274, '_wp_page_template', 'elementor_header_footer'),
(2591, 274, '_elementor_edit_mode', 'builder'),
(2592, 274, '_elementor_template_type', 'wp-page'),
(2593, 274, '_elementor_version', '3.34.4'),
(2594, 274, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2595, 274, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2597, 274, '_elementor_page_settings', 'a:0:{}'),
(4806, 504, '_wp_page_template', 'default'),
(4807, 504, '_elementor_edit_mode', 'builder'),
(4808, 504, '_elementor_template_type', 'wp-page'),
(4809, 504, '_elementor_version', '3.34.4'),
(4810, 504, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4811, 504, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4629, 487, '_wp_page_template', 'elementor_header_footer'),
(4631, 487, '_elementor_edit_mode', 'builder'),
(4632, 487, '_elementor_template_type', 'wp-page'),
(4633, 487, '_elementor_version', '3.34.4'),
(4634, 487, '_elementor_pro_version', '3.34.4'),
(4635, 487, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"President\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"APRN\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4636, 487, '_elementor_page_settings', 'a:0:{}'),
(4637, 488, '_wp_page_template', 'elementor_header_footer'),
(4639, 488, '_elementor_edit_mode', 'builder'),
(4640, 488, '_elementor_template_type', 'wp-page'),
(4641, 488, '_elementor_version', '3.34.4'),
(4642, 488, '_elementor_pro_version', '3.34.4'),
(4643, 488, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"Medical Assistant\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"President\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"APRN\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4644, 488, '_elementor_page_settings', 'a:0:{}'),
(4645, 489, '_wp_page_template', 'elementor_header_footer'),
(4647, 489, '_elementor_edit_mode', 'builder'),
(4648, 489, '_elementor_template_type', 'wp-page'),
(4649, 489, '_elementor_version', '3.34.4'),
(4650, 489, '_elementor_pro_version', '3.34.4'),
(4651, 489, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2601, 275, '_elementor_edit_mode', 'builder'),
(2602, 275, '_elementor_template_type', 'wp-page'),
(2603, 275, '_elementor_version', '3.34.4'),
(2604, 275, '_elementor_pro_version', '3.25.4'),
(2605, 275, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4769, 499, '_elementor_edit_mode', 'builder'),
(4770, 499, '_elementor_template_type', 'footer'),
(4771, 499, '_elementor_version', '3.34.4'),
(4772, 499, '_elementor_pro_version', '3.34.4'),
(4773, 499, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4774, 499, '_elementor_data', '[{\"id\":\"0dda452\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#011433\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b874717\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ae645e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e866901\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"69a4de6\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"007e33a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"da95537\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91264ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d298184\"}],\"pp_display_conditions\":[{\"_id\":\"eae4e56\"}]},\"elements\":[{\"id\":\"7466244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6a84a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ef1dacc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fa88eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5800788\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bfd3c83\"}],\"pp_display_conditions\":[{\"_id\":\"6e5511f\"}]},\"elements\":[{\"id\":\"562d725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b9464b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f910dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a852eaa\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"54711cf\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1702fff\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"90f1ccc\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5d38fc4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"57c90e5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"bd412b7\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/royalhealthmed\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"943ae87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"e2ad508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"08cf145\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8408cd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e5b2e2\"}],\"pp_display_conditions\":[{\"_id\":\"688d8d0\"}]},\"elements\":[{\"id\":\"4252160\",\"elType\":\"widget\",\"settings\":{\"address\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"height\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"344b433\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d68907\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#011433D4\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7b6bf96\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e73d682\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"334faa9\"}],\"pp_display_conditions\":[{\"_id\":\"87922c8\"}]},\"elements\":[{\"id\":\"b760e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 Royal Health Medical Center. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"cb4bc5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4775, 499, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4779, 500, '_elementor_edit_mode', 'builder'),
(4780, 500, '_elementor_template_type', 'footer'),
(4781, 500, '_elementor_version', '3.34.4'),
(4782, 500, '_elementor_pro_version', '3.34.4'),
(4783, 500, '_wp_page_template', 'default'),
(2673, 14, 'site-post-title', 'disabled'),
(2698, 287, '_elementor_pro_version', '3.25.4'),
(2699, 287, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2613, 276, '_elementor_edit_mode', 'builder'),
(2614, 276, '_elementor_template_type', 'container'),
(2615, 276, '_elementor_version', '3.34.4'),
(2616, 276, '_elementor_pro_version', '3.25.4'),
(2617, 276, '_elementor_page_settings', 'a:4:{s:10:\"hide_title\";s:3:\"yes\";s:16:\"background_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:25:\"background_video_fallback\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}}'),
(2618, 277, '_elementor_edit_mode', 'builder'),
(2619, 277, '_elementor_template_type', 'container'),
(2620, 277, '_elementor_version', '3.34.4'),
(2621, 277, '_elementor_pro_version', '3.25.4'),
(2622, 277, '_elementor_page_settings', 'a:0:{}'),
(2623, 276, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2624, 276, '_elementor_data', '[{\"id\":\"743e4bc1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3405c2bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_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\":\"354dce0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21c14ff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7163a001\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61902995\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"64c54461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d9028c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_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\":\"526da0c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About A.R.I.S.E.  <span style=\\\"font-weight:300;\\\">Health<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13f738f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"2057872\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=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\":\"heading\"},{\"id\":\"15c1bd13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  At A.R.I.S.E. Health & Wellness, our mission is to Affirm, Restore, Inspire, Support, and Empower women and children to achieve mental and emotional wellness. We provide compassionate, evidence-based mental health care and personalized medication management that \",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bdbfdd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/arise\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2625, 278, '_elementor_edit_mode', 'builder'),
(2626, 278, '_elementor_template_type', 'container'),
(2627, 278, '_elementor_version', '3.34.4'),
(2628, 278, '_elementor_pro_version', '3.25.4'),
(2629, 278, '_elementor_page_settings', 'a:4:{s:10:\"hide_title\";s:3:\"yes\";s:16:\"background_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:25:\"background_video_fallback\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}}'),
(2630, 278, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2631, 278, '_elementor_data', '[{\"id\":\"743e4bc1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3405c2bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_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\":\"354dce0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21c14ff2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7163a001\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61902995\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"64c54461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d9028c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_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\":\"526da0c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About A.R.I.S.E.  <span style=\\\"font-weight:300;\\\">Health<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13f738f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"2057872\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=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\":\"heading\"},{\"id\":\"15c1bd13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  At A.R.I.S.E. Health & Wellness, our mission is to Affirm, Restore, Inspire, Support, and Empower women and children to achieve mental and emotional wellness. We provide compassionate, evidence-based mental health care and personalized medication management that \",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bdbfdd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/arise\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2633, 276, 'site-post-title', 'disabled'),
(2634, 276, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:4;s:14:\"flex_direction\";i:3;s:5:\"width\";i:2;s:8:\"flex_gap\";i:2;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(2653, 280, '_elementor_page_settings', 'a:0:{}'),
(2664, 282, '_wp_page_template', 'default'),
(2665, 282, '_elementor_edit_mode', 'builder'),
(2666, 282, '_elementor_template_type', 'wp-page'),
(2667, 282, '_elementor_version', '3.34.4'),
(2668, 282, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2669, 282, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2655, 281, '_wp_page_template', 'elementor_header_footer'),
(2656, 281, '_elementor_edit_mode', 'builder'),
(2657, 281, '_elementor_template_type', 'wp-page'),
(2658, 281, '_elementor_version', '3.34.4'),
(2659, 281, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2660, 281, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2662, 281, '_elementor_page_settings', 'a:0:{}'),
(4523, 476, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2671, 282, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4517, 476, '_wp_page_template', 'default'),
(4518, 476, '_elementor_edit_mode', 'builder'),
(4519, 476, '_elementor_template_type', 'wp-page'),
(4520, 476, '_elementor_version', '3.34.4'),
(4521, 476, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4522, 476, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2724, 290, '_wp_page_template', 'default'),
(2725, 290, '_elementor_edit_mode', 'builder'),
(2726, 290, '_elementor_template_type', 'wp-page'),
(2727, 290, '_elementor_version', '3.34.4'),
(2728, 290, '_elementor_pro_version', '3.25.4'),
(2729, 290, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2677, 283, '_wp_attached_file', '2026/02/about-9.jpg'),
(2678, 283, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2026/02/about-9.jpg\";s:8:\"filesize\";i:46710;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"about-9-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"about-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6297;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2679, 284, '_wp_attached_file', '2026/02/services-2-1.jpg'),
(2680, 284, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:791;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/02/services-2-1.jpg\";s:8:\"filesize\";i:71224;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"services-2-1-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"services-2-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:8039;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"services-2-1-768x971.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:971;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95635;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2681, 285, '_wp_attached_file', '2026/02/Primary-Care.jpg'),
(2682, 285, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:648;s:4:\"file\";s:24:\"2026/02/Primary-Care.jpg\";s:8:\"filesize\";i:61894;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Primary-Care-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13760;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Primary-Care-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Primary-Care-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2719, 289, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2714, 289, '_elementor_template_type', 'wp-page'),
(2715, 289, '_elementor_version', '3.34.4'),
(2716, 289, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2717, 289, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2712, 289, '_wp_page_template', 'default'),
(2713, 289, '_elementor_edit_mode', 'builder'),
(2701, 287, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4513, 475, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2703, 288, '_wp_page_template', 'default'),
(2704, 288, '_elementor_edit_mode', 'builder'),
(2705, 288, '_elementor_template_type', 'wp-page'),
(2706, 288, '_elementor_version', '3.34.4'),
(2707, 288, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2708, 288, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2710, 288, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4507, 475, '_wp_page_template', 'default'),
(4508, 475, '_elementor_edit_mode', 'builder'),
(4509, 475, '_elementor_template_type', 'wp-page'),
(4510, 475, '_elementor_version', '3.34.4'),
(4511, 475, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4512, 475, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2755, 293, '_wp_page_template', 'default'),
(2756, 293, '_elementor_edit_mode', 'builder'),
(2757, 293, '_elementor_template_type', 'wp-page'),
(2758, 293, '_elementor_version', '3.34.4'),
(2759, 293, '_elementor_pro_version', '3.25.4'),
(2760, 293, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2731, 290, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4503, 474, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2734, 291, '_wp_page_template', 'default'),
(2735, 291, '_elementor_edit_mode', 'builder'),
(2736, 291, '_elementor_template_type', 'wp-page'),
(2737, 291, '_elementor_version', '3.34.4'),
(2738, 291, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2739, 291, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2741, 291, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4658, 491, '_wp_page_template', 'default'),
(4659, 491, '_elementor_edit_mode', 'builder'),
(4660, 491, '_elementor_template_type', 'wp-page'),
(4661, 491, '_elementor_version', '3.34.4'),
(4662, 491, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4663, 491, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2744, 292, '_wp_page_template', 'default'),
(2745, 292, '_elementor_edit_mode', 'builder'),
(2746, 292, '_elementor_template_type', 'wp-page'),
(2747, 292, '_elementor_version', '3.34.4'),
(2748, 292, '_elementor_pro_version', '3.25.4'),
(2749, 292, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}]},\"elements\":[{\"id\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2751, 292, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4490, 473, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2770, 294, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2771, 295, '_wp_page_template', 'default'),
(2772, 295, '_elementor_edit_mode', 'builder'),
(2773, 295, '_elementor_template_type', 'wp-page'),
(2774, 295, '_elementor_version', '3.34.4'),
(2775, 295, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2776, 295, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2778, 295, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2784, 297, '_wp_page_template', 'default'),
(2785, 297, '_elementor_edit_mode', 'builder'),
(2786, 297, '_elementor_template_type', 'wp-page'),
(2787, 297, '_elementor_version', '3.34.4'),
(2788, 297, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2789, 297, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2820, 301, '_wp_page_template', 'default'),
(2821, 301, '_elementor_edit_mode', 'builder'),
(2822, 301, '_elementor_template_type', 'wp-page'),
(2823, 301, '_elementor_version', '3.34.4'),
(2824, 301, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2825, 301, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3061, 323, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3062, 324, '_wp_page_template', 'default'),
(3063, 324, '_elementor_edit_mode', 'builder'),
(3064, 324, '_elementor_template_type', 'wp-page'),
(3065, 324, '_elementor_version', '3.34.4'),
(3066, 324, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3067, 324, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2782, 296, '_wp_attached_file', '2026/02/Team-1.jpg'),
(2783, 296, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2026/02/Team-1.jpg\";s:8:\"filesize\";i:62348;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Team-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:13297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Team-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:5647;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Team-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:54214;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4176, 437, '_elementor_edit_mode', 'builder'),
(4177, 437, '_elementor_template_type', 'wp-page'),
(4178, 437, '_elementor_version', '3.34.4'),
(4179, 437, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4180, 437, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"0163d33\"},{\"slide_title\":\"Slide #2\",\"_id\":\"3bf53af\"},{\"slide_title\":\"Slide #3\",\"_id\":\"0de6dd6\"},{\"slide_title\":\"Slide #3\",\"_id\":\"ca9455e\"}],\"slides_to_show\":\"4\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[{\"id\":\"405afdf\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"c12ff69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c5b98d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4849e1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"e4bdc1f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #2\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c42fcce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"45dcfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e09ce13\"}],\"pp_display_conditions\":[{\"_id\":\"9fcefdf\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"a23e5e0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"b40eccb\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2791, 297, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2794, 298, '_wp_page_template', 'default'),
(2795, 298, '_elementor_edit_mode', 'builder'),
(2796, 298, '_elementor_template_type', 'wp-page'),
(2797, 298, '_elementor_version', '3.34.4'),
(2798, 298, '_elementor_pro_version', '3.25.4'),
(2799, 298, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4175, 437, '_wp_page_template', 'default'),
(2801, 298, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4484, 473, '_wp_page_template', 'default'),
(4485, 473, '_elementor_edit_mode', 'builder'),
(4486, 473, '_elementor_template_type', 'wp-page'),
(4487, 473, '_elementor_version', '3.34.4'),
(4488, 473, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4489, 473, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2804, 299, '_wp_page_template', 'default'),
(2805, 299, '_elementor_edit_mode', 'builder'),
(2806, 299, '_elementor_template_type', 'wp-page'),
(2807, 299, '_elementor_version', '3.34.4'),
(2808, 299, '_elementor_pro_version', '3.25.4'),
(2809, 299, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2811, 299, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4480, 472, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2853, 304, '_wp_page_template', 'default'),
(2854, 304, '_elementor_edit_mode', 'builder'),
(2855, 304, '_elementor_template_type', 'wp-page'),
(2856, 304, '_elementor_version', '3.34.4'),
(2857, 304, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2858, 304, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2817, 300, '_wp_attached_file', '2026/02/diagnosis_4625898.svg'),
(2818, 300, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2736;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4917, 514, '_elementor_edit_mode', 'builder'),
(4918, 514, '_elementor_template_type', 'header'),
(4919, 514, '_elementor_version', '3.34.4'),
(4920, 514, '_elementor_pro_version', '3.34.4'),
(4921, 514, '_wp_page_template', 'default'),
(4922, 514, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDF9F9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.12)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(2827, 301, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4474, 472, '_wp_page_template', 'default'),
(4475, 472, '_elementor_edit_mode', 'builder'),
(4476, 472, '_elementor_template_type', 'wp-page'),
(4477, 472, '_elementor_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4478, 472, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4479, 472, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2830, 302, '_wp_page_template', 'default'),
(2831, 302, '_elementor_edit_mode', 'builder'),
(2832, 302, '_elementor_template_type', 'wp-page'),
(2833, 302, '_elementor_version', '3.34.4'),
(2834, 302, '_elementor_pro_version', '3.25.4'),
(2835, 302, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2837, 302, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2840, 303, '_wp_page_template', 'default'),
(2841, 303, '_elementor_edit_mode', 'builder'),
(2842, 303, '_elementor_template_type', 'wp-page'),
(2843, 303, '_elementor_version', '3.34.4'),
(2844, 303, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2845, 303, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2847, 303, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4470, 471, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2942, 313, '_wp_page_template', 'default'),
(2943, 313, '_elementor_edit_mode', 'builder'),
(2944, 313, '_elementor_template_type', 'wp-page'),
(2945, 313, '_elementor_version', '3.34.4'),
(2946, 313, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2947, 313, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2860, 304, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4497, 474, '_wp_page_template', 'default'),
(4498, 474, '_elementor_edit_mode', 'builder'),
(4499, 474, '_elementor_template_type', 'wp-page'),
(4500, 474, '_elementor_version', '3.34.4'),
(4501, 474, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4502, 474, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2863, 305, '_wp_page_template', 'default'),
(2864, 305, '_elementor_edit_mode', 'builder'),
(2865, 305, '_elementor_template_type', 'wp-page'),
(2866, 305, '_elementor_version', '3.34.4'),
(2867, 305, '_elementor_pro_version', '3.25.4'),
(2868, 305, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2870, 305, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4457, 470, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2873, 306, '_wp_page_template', 'default'),
(2874, 306, '_elementor_edit_mode', 'builder'),
(2875, 306, '_elementor_template_type', 'wp-page'),
(2876, 306, '_elementor_version', '3.34.4'),
(2877, 306, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2878, 306, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2880, 306, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4825, 506, '_elementor_edit_mode', 'builder'),
(4451, 470, '_wp_page_template', 'default'),
(4452, 470, '_elementor_edit_mode', 'builder'),
(4453, 470, '_elementor_template_type', 'wp-page'),
(4454, 470, '_elementor_version', '3.34.4'),
(4455, 470, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4456, 470, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2990, 317, '_wp_page_template', 'default'),
(2991, 317, '_elementor_edit_mode', 'builder'),
(2992, 317, '_elementor_template_type', 'wp-page'),
(2993, 317, '_elementor_version', '3.34.4'),
(2994, 317, '_elementor_pro_version', '3.25.4'),
(2995, 317, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2886, 307, '_elementor_edit_mode', 'builder'),
(2887, 307, '_elementor_template_type', 'footer'),
(2888, 308, '_elementor_edit_mode', 'builder'),
(2889, 308, '_elementor_template_type', 'footer'),
(2890, 307, '_elementor_version', '3.34.4'),
(2891, 307, '_elementor_pro_version', '3.34.4'),
(2892, 307, '_astra_content_layout_flag', 'disabled'),
(2894, 307, 'ast-title-bar-display', 'disabled'),
(2895, 307, 'ast-featured-img', 'disabled'),
(2896, 307, 'ast-site-content-layout', 'full-width-container'),
(2897, 307, 'site-sidebar-layout', 'no-sidebar'),
(2901, 307, '_elementor_data', '[{\"id\":\"0dda452\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#011433\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b874717\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ae645e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e866901\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"69a4de6\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"007e33a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"da95537\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91264ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d298184\"}],\"pp_display_conditions\":[{\"_id\":\"eae4e56\"}]},\"elements\":[{\"id\":\"7466244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6a84a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ef1dacc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fa88eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5800788\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bfd3c83\"}],\"pp_display_conditions\":[{\"_id\":\"6e5511f\"}]},\"elements\":[{\"id\":\"562d725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b9464b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f910dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a852eaa\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"54711cf\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1702fff\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"90f1ccc\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5d38fc4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"57c90e5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"bd412b7\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/royalhealthmed\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"943ae87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"e2ad508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"08cf145\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8408cd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e5b2e2\"}],\"pp_display_conditions\":[{\"_id\":\"688d8d0\"}]},\"elements\":[{\"id\":\"4252160\",\"elType\":\"widget\",\"settings\":{\"address\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"height\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"344b433\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d68907\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#011433D4\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7b6bf96\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e73d682\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"334faa9\"}],\"pp_display_conditions\":[{\"_id\":\"87922c8\"}]},\"elements\":[{\"id\":\"b760e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 Royal Health Medical Center. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"cb4bc5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2899, 307, '_edit_lock', '1770012747:1'),
(2900, 307, '_wp_page_template', 'default'),
(2902, 309, '_elementor_edit_mode', 'builder'),
(2903, 309, '_elementor_template_type', 'footer'),
(2904, 309, '_elementor_version', '3.34.4'),
(2905, 309, '_elementor_pro_version', '3.25.4'),
(2906, 309, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2907, 309, '_elementor_data', '[{\"id\":\"0dda452\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#011433\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b874717\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ae645e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e866901\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"69a4de6\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"ef1dacc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fa88eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5800788\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bfd3c83\"}],\"pp_display_conditions\":[{\"_id\":\"6e5511f\"}]},\"elements\":[{\"id\":\"562d725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b9464b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f910dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a852eaa\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"54711cf\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1702fff\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"90f1ccc\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5d38fc4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"007e33a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"da95537\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91264ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d298184\"}],\"pp_display_conditions\":[{\"_id\":\"eae4e56\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"e2ad508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"08cf145\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8408cd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e5b2e2\"}],\"pp_display_conditions\":[{\"_id\":\"688d8d0\"}]},\"elements\":[{\"id\":\"4252160\",\"elType\":\"widget\",\"settings\":{\"address\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"height\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"344b433\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false}]'),
(2929, 312, '_elementor_edit_mode', 'builder'),
(2930, 312, '_elementor_template_type', 'footer'),
(4746, 497, '_elementor_edit_mode', 'builder'),
(4747, 497, '_elementor_template_type', 'footer'),
(4748, 497, '_elementor_version', '3.34.4'),
(4749, 497, '_elementor_pro_version', '3.25.4'),
(4750, 497, '_wp_page_template', 'default'),
(4751, 497, '_elementor_data', '[{\"id\":\"0dda452\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#011433\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b874717\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ae645e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e866901\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"69a4de6\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"007e33a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"da95537\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91264ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d298184\"}],\"pp_display_conditions\":[{\"_id\":\"eae4e56\"}]},\"elements\":[{\"id\":\"7466244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6a84a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ef1dacc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fa88eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5800788\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bfd3c83\"}],\"pp_display_conditions\":[{\"_id\":\"6e5511f\"}]},\"elements\":[{\"id\":\"562d725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b9464b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f910dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a852eaa\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"54711cf\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1702fff\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"90f1ccc\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5d38fc4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"57c90e5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"bd412b7\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"943ae87\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"e2ad508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"08cf145\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8408cd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e5b2e2\"}],\"pp_display_conditions\":[{\"_id\":\"688d8d0\"}]},\"elements\":[{\"id\":\"4252160\",\"elType\":\"widget\",\"settings\":{\"address\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"height\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"344b433\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d68907\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#011433D4\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7b6bf96\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e73d682\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"334faa9\"}],\"pp_display_conditions\":[{\"_id\":\"87922c8\"}]},\"elements\":[{\"id\":\"b760e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 Royal Health Medical Center. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"cb4bc5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2939, 307, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2931, 312, '_elementor_version', '3.34.4'),
(2932, 312, '_elementor_pro_version', '3.25.4'),
(2933, 312, '_wp_page_template', 'default'),
(2934, 312, '_elementor_data', '[{\"id\":\"0dda452\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#011433\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b874717\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ae645e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e866901\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"69a4de6\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"007e33a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"da95537\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"91264ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d298184\"}],\"pp_display_conditions\":[{\"_id\":\"eae4e56\"}]},\"elements\":[{\"id\":\"7466244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6a84a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ef1dacc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fa88eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5800788\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bfd3c83\"}],\"pp_display_conditions\":[{\"_id\":\"6e5511f\"}]},\"elements\":[{\"id\":\"562d725\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"3b9464b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f910dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a852eaa\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"54711cf\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1702fff\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/index.php\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"90f1ccc\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5d38fc4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e2ad508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"08cf145\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8408cd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e5b2e2\"}],\"pp_display_conditions\":[{\"_id\":\"688d8d0\"}]},\"elements\":[{\"id\":\"4252160\",\"elType\":\"widget\",\"settings\":{\"address\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"height\":{\"unit\":\"px\",\"size\":228,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"344b433\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d68907\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#011433D4\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7b6bf96\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e73d682\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"334faa9\"}],\"pp_display_conditions\":[{\"_id\":\"87922c8\"}]},\"elements\":[{\"id\":\"b760e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 Royal Health Medical Center. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"cb4bc5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2949, 313, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4447, 469, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2952, 314, '_wp_page_template', 'default'),
(2953, 314, '_elementor_edit_mode', 'builder'),
(2954, 314, '_elementor_template_type', 'wp-page'),
(2955, 314, '_elementor_version', '3.34.4'),
(2956, 314, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2957, 314, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2959, 314, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4441, 469, '_wp_page_template', 'default'),
(4442, 469, '_elementor_edit_mode', 'builder'),
(4443, 469, '_elementor_template_type', 'wp-page'),
(4444, 469, '_elementor_version', '3.34.4'),
(4445, 469, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4446, 469, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2962, 315, '_wp_page_template', 'default'),
(2963, 315, '_elementor_edit_mode', 'builder'),
(2964, 315, '_elementor_template_type', 'wp-page'),
(2965, 315, '_elementor_version', '3.34.4'),
(2966, 315, '_elementor_pro_version', '3.25.4'),
(2967, 315, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2969, 315, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3023, 320, '_wp_page_template', 'default'),
(3024, 320, '_elementor_edit_mode', 'builder'),
(3025, 320, '_elementor_template_type', 'wp-page'),
(3026, 320, '_elementor_version', '3.34.4'),
(3027, 320, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3028, 320, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2982, 316, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2985, 316, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:310;s:3:\"url\";s:131:\"https://mrarif.me/royalhealth/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_86_2026-02-01-10-27-09_50b8fe3.png\";}'),
(3184, 336, '_elementor_edit_mode', 'builder'),
(3185, 336, '_elementor_template_type', 'header'),
(3186, 336, '_elementor_version', '3.34.4'),
(3187, 336, '_elementor_pro_version', '3.25.4'),
(3188, 336, '_wp_page_template', 'default');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3189, 336, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(2997, 317, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4437, 468, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3000, 318, '_wp_page_template', 'default'),
(3001, 318, '_elementor_edit_mode', 'builder'),
(3002, 318, '_elementor_template_type', 'wp-page'),
(3003, 318, '_elementor_version', '3.34.4'),
(3004, 318, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3005, 318, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, \"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3007, 318, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4464, 471, '_wp_page_template', 'default'),
(4465, 471, '_elementor_edit_mode', 'builder'),
(4466, 471, '_elementor_template_type', 'wp-page'),
(4467, 471, '_elementor_version', '3.34.4'),
(4468, 471, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4469, 471, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3010, 319, '_wp_page_template', 'default'),
(3011, 319, '_elementor_edit_mode', 'builder'),
(3012, 319, '_elementor_template_type', 'wp-page'),
(3013, 319, '_elementor_version', '3.34.4'),
(3014, 319, '_elementor_pro_version', '3.25.4'),
(3015, 319, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3017, 319, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4426, 467, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4431, 468, '_wp_page_template', 'default'),
(4432, 468, '_elementor_edit_mode', 'builder'),
(4433, 468, '_elementor_template_type', 'wp-page'),
(4434, 468, '_elementor_version', '3.34.4'),
(4435, 468, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4436, 468, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4869, 510, '_wp_page_template', 'default'),
(4870, 510, '_elementor_edit_mode', 'builder'),
(4871, 510, '_elementor_template_type', 'wp-page'),
(4872, 510, '_elementor_version', '3.34.4'),
(4873, 510, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4874, 510, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5020, 522, '_wp_page_template', 'default'),
(5152, 534, '_wp_page_template', 'default'),
(5680, 582, '_wp_page_template', 'default'),
(5681, 582, '_elementor_edit_mode', 'builder'),
(5682, 582, '_elementor_template_type', 'wp-page'),
(5683, 582, '_elementor_version', '3.34.4'),
(5684, 582, '_elementor_pro_version', '3.34.4'),
(3054, 323, '_wp_page_template', 'default'),
(3055, 323, '_elementor_edit_mode', 'builder'),
(3056, 323, '_elementor_template_type', 'wp-page'),
(3057, 323, '_elementor_version', '3.34.4'),
(3058, 323, '_elementor_pro_version', '3.25.4'),
(3059, 323, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3030, 320, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4418, 466, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4826, 506, '_elementor_template_type', 'wp-page'),
(4827, 506, '_elementor_version', '3.34.4'),
(4828, 506, '_elementor_pro_version', '3.34.4'),
(4420, 467, '_wp_page_template', 'default'),
(4421, 467, '_elementor_edit_mode', 'builder'),
(4422, 467, '_elementor_template_type', 'wp-page'),
(4423, 467, '_elementor_version', '3.34.4'),
(4424, 467, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4425, 467, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3033, 321, '_wp_page_template', 'default'),
(3034, 321, '_elementor_edit_mode', 'builder'),
(3035, 321, '_elementor_template_type', 'wp-page'),
(3036, 321, '_elementor_version', '3.34.4'),
(3037, 321, '_elementor_pro_version', '3.25.4'),
(3038, 321, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3040, 321, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4410, 465, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4412, 466, '_wp_page_template', 'default'),
(4413, 466, '_elementor_edit_mode', 'builder'),
(4414, 466, '_elementor_template_type', 'wp-page'),
(4415, 466, '_elementor_version', '3.34.4'),
(4416, 466, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4417, 466, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3043, 322, '_wp_page_template', 'default'),
(3044, 322, '_elementor_edit_mode', 'builder'),
(3045, 322, '_elementor_template_type', 'wp-page'),
(3046, 322, '_elementor_version', '3.34.4'),
(3047, 322, '_elementor_pro_version', '3.25.4'),
(3048, 322, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3050, 322, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4393, 463, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3069, 324, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3070, 325, '_wp_page_template', 'default'),
(3071, 325, '_elementor_edit_mode', 'builder'),
(3072, 325, '_elementor_template_type', 'wp-page'),
(3073, 325, '_elementor_version', '3.34.4'),
(3074, 325, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3075, 325, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3077, 325, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3079, 326, '_wp_page_template', 'default'),
(3080, 326, '_elementor_edit_mode', 'builder'),
(3081, 326, '_elementor_template_type', 'wp-page'),
(3082, 326, '_elementor_version', '3.34.4'),
(3083, 326, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3084, 326, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3086, 326, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3087, 327, '_wp_page_template', 'default'),
(3088, 327, '_elementor_edit_mode', 'builder'),
(3089, 327, '_elementor_template_type', 'wp-page'),
(3090, 327, '_elementor_version', '3.34.4'),
(3091, 327, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3092, 327, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3094, 327, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3095, 328, '_wp_page_template', 'default'),
(3096, 328, '_elementor_edit_mode', 'builder'),
(3097, 328, '_elementor_template_type', 'wp-page'),
(3098, 328, '_elementor_version', '3.34.4'),
(3099, 328, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3100, 328, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3102, 328, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3106, 329, '_wp_page_template', 'default'),
(3107, 329, '_elementor_edit_mode', 'builder'),
(3108, 329, '_elementor_template_type', 'wp-page'),
(3109, 329, '_elementor_version', '3.34.4'),
(3110, 329, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3111, 329, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3139, 332, '_wp_page_template', 'default'),
(3140, 332, '_elementor_edit_mode', 'builder'),
(3141, 332, '_elementor_template_type', 'wp-page'),
(3142, 332, '_elementor_version', '3.34.4'),
(3143, 332, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3144, 332, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3894, 412, '_wp_page_template', 'default'),
(3895, 412, '_elementor_edit_mode', 'builder'),
(3896, 412, '_elementor_template_type', 'wp-page'),
(3897, 412, '_elementor_version', '3.34.4'),
(3898, 412, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3899, 412, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3901, 412, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3902, 413, '_wp_page_template', 'default'),
(3903, 413, '_elementor_edit_mode', 'builder'),
(3904, 413, '_elementor_template_type', 'wp-page'),
(3905, 413, '_elementor_version', '3.34.4'),
(3906, 413, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3907, 413, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3113, 329, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4385, 462, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4387, 463, '_wp_page_template', 'default'),
(4388, 463, '_elementor_edit_mode', 'builder'),
(4389, 463, '_elementor_template_type', 'wp-page'),
(4390, 463, '_elementor_version', '3.34.4'),
(4391, 463, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4392, 463, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3116, 330, '_wp_page_template', 'default'),
(3117, 330, '_elementor_edit_mode', 'builder'),
(3118, 330, '_elementor_template_type', 'wp-page'),
(3119, 330, '_elementor_version', '3.34.4'),
(3120, 330, '_elementor_pro_version', '3.25.4'),
(3121, 330, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\"},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3123, 330, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4404, 465, '_wp_page_template', 'default'),
(4405, 465, '_elementor_edit_mode', 'builder'),
(4406, 465, '_elementor_template_type', 'wp-page'),
(4407, 465, '_elementor_version', '3.34.4'),
(4408, 465, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4409, 465, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3126, 331, '_wp_page_template', 'default'),
(3127, 331, '_elementor_edit_mode', 'builder'),
(3128, 331, '_elementor_template_type', 'wp-page'),
(3129, 331, '_elementor_version', '3.34.4'),
(3130, 331, '_elementor_pro_version', '3.25.4'),
(3131, 331, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3133, 331, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4365, 459, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4379, 462, '_wp_page_template', 'default'),
(4380, 462, '_elementor_edit_mode', 'builder'),
(4381, 462, '_elementor_template_type', 'wp-page'),
(4382, 462, '_elementor_version', '3.34.4'),
(4383, 462, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4384, 462, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4368, 460, '_wp_attached_file', '2026/02/Rebeca-Barrabeitg-Pozo.jpg'),
(4369, 460, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:34:\"2026/02/Rebeca-Barrabeitg-Pozo.jpg\";s:8:\"filesize\";i:57955;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Rebeca-Barrabeitg-Pozo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Rebeca-Barrabeitg-Pozo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5461;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Rebeca-Barrabeitg-Pozo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47884;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4401, 464, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3863, 409, '_wp_page_template', 'default'),
(3864, 409, '_elementor_edit_mode', 'builder'),
(3865, 409, '_elementor_template_type', 'wp-page'),
(3866, 409, '_elementor_version', '3.34.4'),
(3867, 409, '_elementor_pro_version', '3.25.4'),
(3868, 409, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3146, 332, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4357, 458, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4361, 459, '_elementor_template_type', 'wp-page'),
(4362, 459, '_elementor_version', '3.34.4'),
(4363, 459, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4364, 459, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3149, 333, '_wp_page_template', 'default'),
(3150, 333, '_elementor_edit_mode', 'builder'),
(3151, 333, '_elementor_template_type', 'wp-page'),
(3152, 333, '_elementor_version', '3.34.4'),
(3153, 333, '_elementor_pro_version', '3.25.4'),
(3154, 333, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3156, 333, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4349, 457, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4351, 458, '_wp_page_template', 'default'),
(4352, 458, '_elementor_edit_mode', 'builder'),
(4353, 458, '_elementor_template_type', 'wp-page'),
(4354, 458, '_elementor_version', '3.34.4'),
(4355, 458, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4356, 458, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3159, 334, '_wp_page_template', 'default'),
(3160, 334, '_elementor_edit_mode', 'builder'),
(3161, 334, '_elementor_template_type', 'wp-page'),
(3162, 334, '_elementor_version', '3.34.4'),
(3163, 334, '_elementor_pro_version', '3.25.4'),
(3164, 334, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3166, 334, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4343, 457, '_wp_page_template', 'default'),
(4344, 457, '_elementor_edit_mode', 'builder'),
(4345, 457, '_elementor_template_type', 'wp-page'),
(4346, 457, '_elementor_version', '3.34.4'),
(4347, 457, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4348, 457, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3179, 335, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4340, 456, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3191, 336, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4902, 513, '_elementor_edit_mode', 'builder'),
(4903, 513, '_elementor_template_type', 'header'),
(4904, 513, '_elementor_version', '3.34.4'),
(4905, 513, '_elementor_pro_version', '3.25.4'),
(4906, 513, '_wp_page_template', 'default'),
(4907, 513, '_elementor_data', '[{\"id\":\"89e413d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"width\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bb4a998\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2b11d7f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"540bde6\"}],\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"150d241\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"z_index\":1,\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDF9F9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":9,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b85355\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c143a51\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"425eb05\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"381183b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"073b3c3\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d34c67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/logo-9.png\",\"id\":88,\"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\":\"32739db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b890165\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2c343e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"66632f0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"012467f\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"569dc68\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4d7bfa8\",\"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\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c232d49\"}],\"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\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor5\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true},{\"id\":\"6818259\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ec8aac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d896ce8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e6b1570\"}],\"pp_display_conditions\":[{\"_id\":\"7c49f0c\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0d501b6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Call Us\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"300\",\"title_typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"bf862a0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"\"},\"_border_color\":\"#A9ACAF5C\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"264707d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner1.jpg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a20ee05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"351c9c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe9ffec\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":14,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"ca22de0\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"ef4a513\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d91b886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(3196, 48, '_elementor_edit_mode', 'builder'),
(3197, 48, '_astra_content_layout_flag', 'disabled'),
(3198, 48, 'ast-title-bar-display', 'disabled'),
(3199, 48, '_elementor_template_type', 'wp-page'),
(3200, 48, '_elementor_version', '3.34.4'),
(3201, 48, '_elementor_pro_version', '3.25.4'),
(3217, 48, '_elementor_data', '[{\"id\":\"fa3a0c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"915acb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ffa6c4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"815dd5e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"27c3beb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"23a6e10\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"00ea420\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ebf631d\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3203, 337, '_wp_page_template', 'elementor_header_footer'),
(3205, 337, '_elementor_edit_mode', 'builder'),
(3206, 337, '_elementor_template_type', 'wp-page'),
(3207, 337, '_elementor_version', '3.34.4'),
(3208, 337, '_elementor_pro_version', '3.25.4'),
(3209, 337, '_elementor_page_settings', 'a:0:{}'),
(3210, 338, '_wp_page_template', 'elementor_header_footer'),
(3212, 338, '_elementor_edit_mode', 'builder'),
(3213, 338, '_elementor_template_type', 'wp-page'),
(3214, 338, '_elementor_version', '3.34.4'),
(3215, 338, '_elementor_pro_version', '3.25.4'),
(3216, 338, '_elementor_page_settings', 'a:0:{}'),
(3218, 339, '_wp_page_template', 'elementor_header_footer'),
(3220, 339, '_elementor_edit_mode', 'builder'),
(3221, 339, '_elementor_template_type', 'wp-page'),
(3222, 339, '_elementor_version', '3.34.4'),
(3223, 339, '_elementor_pro_version', '3.25.4'),
(3224, 339, '_elementor_data', '[{\"id\":\"fa3a0c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"915acb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ffa6c4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"815dd5e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"27c3beb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"23a6e10\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"00ea420\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ebf631d\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3225, 48, '_elementor_page_settings', 'a:0:{}'),
(3226, 48, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:3;s:4:\"view\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:3;s:15:\"position_mobile\";i:3;s:26:\"content_vertical_alignment\";i:3;s:18:\"title_bottom_space\";i:3;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:2:{s:27:\"field_typography_typography\";i:1;s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3229, 36, '_elementor_edit_mode', 'builder'),
(3230, 36, '_astra_content_layout_flag', 'disabled'),
(3231, 36, 'ast-title-bar-display', 'disabled'),
(3232, 36, '_elementor_template_type', 'wp-page'),
(3233, 36, '_elementor_version', '3.34.4'),
(3234, 36, '_elementor_pro_version', '3.34.4'),
(3250, 36, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3236, 340, '_wp_page_template', 'elementor_header_footer'),
(3238, 340, '_elementor_edit_mode', 'builder'),
(3239, 340, '_elementor_template_type', 'wp-page'),
(3240, 340, '_elementor_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3241, 340, '_elementor_pro_version', '3.25.4'),
(3242, 340, '_elementor_page_settings', 'a:0:{}'),
(3243, 341, '_wp_page_template', 'elementor_header_footer'),
(3245, 341, '_elementor_edit_mode', 'builder'),
(3246, 341, '_elementor_template_type', 'wp-page'),
(3247, 341, '_elementor_version', '3.34.4'),
(3248, 341, '_elementor_pro_version', '3.25.4'),
(3249, 341, '_elementor_page_settings', 'a:0:{}'),
(3251, 342, '_wp_page_template', 'elementor_header_footer'),
(3253, 342, '_elementor_edit_mode', 'builder'),
(3254, 342, '_elementor_template_type', 'wp-page'),
(3255, 342, '_elementor_version', '3.34.4'),
(3256, 342, '_elementor_pro_version', '3.25.4'),
(3257, 342, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3262, 343, '_wp_page_template', 'elementor_header_footer'),
(3264, 343, '_elementor_edit_mode', 'builder'),
(3265, 343, '_elementor_template_type', 'wp-page'),
(3266, 343, '_elementor_version', '3.34.4'),
(3267, 343, '_elementor_pro_version', '3.25.4'),
(3268, 343, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3293, 346, '_wp_page_template', 'elementor_header_footer'),
(3295, 346, '_elementor_edit_mode', 'builder'),
(3296, 346, '_elementor_template_type', 'wp-page'),
(3297, 346, '_elementor_version', '3.34.4'),
(3298, 346, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3299, 346, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d775b2f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"6746ef7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"60c8ab9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dd0849b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4261f98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5f50041\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d12394a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6a0ba61\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"393998b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b7dbfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e65359\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f57a244\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5a74a24\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3269, 343, '_elementor_page_settings', 'a:0:{}'),
(3272, 344, '_wp_page_template', 'elementor_header_footer'),
(3274, 344, '_elementor_edit_mode', 'builder'),
(3275, 344, '_elementor_template_type', 'wp-page'),
(3276, 344, '_elementor_version', '3.34.4'),
(3277, 344, '_elementor_pro_version', '3.25.4'),
(3278, 344, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3279, 344, '_elementor_page_settings', 'a:0:{}'),
(3309, 348, '_wp_page_template', 'elementor_header_footer'),
(3311, 348, '_elementor_edit_mode', 'builder'),
(3312, 348, '_elementor_template_type', 'wp-page'),
(3313, 348, '_elementor_version', '3.34.4'),
(3314, 348, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3315, 348, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3282, 345, '_wp_page_template', 'elementor_header_footer'),
(3284, 345, '_elementor_edit_mode', 'builder'),
(3285, 345, '_elementor_template_type', 'wp-page'),
(3286, 345, '_elementor_version', '3.34.4'),
(3287, 345, '_elementor_pro_version', '3.25.4'),
(3288, 345, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d775b2f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"6746ef7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"60c8ab9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dd0849b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4261f98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5f50041\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d12394a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6a0ba61\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"393998b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b7dbfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e65359\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f57a244\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5a74a24\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3300, 346, '_elementor_page_settings', 'a:0:{}'),
(3301, 347, '_wp_page_template', 'elementor_header_footer'),
(3303, 347, '_elementor_edit_mode', 'builder'),
(3304, 347, '_elementor_template_type', 'wp-page'),
(3305, 347, '_elementor_version', '3.34.4'),
(3306, 347, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3307, 347, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d775b2f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"6746ef7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"60c8ab9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dd0849b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4261f98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5f50041\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d12394a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6a0ba61\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"393998b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6b7dbfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e65359\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f57a244\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5a74a24\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3308, 347, '_elementor_page_settings', 'a:0:{}'),
(3320, 349, '_wp_page_template', 'elementor_header_footer'),
(3322, 349, '_elementor_edit_mode', 'builder'),
(3323, 349, '_elementor_template_type', 'wp-page'),
(3324, 349, '_elementor_version', '3.34.4'),
(3325, 349, '_elementor_pro_version', '3.25.4'),
(3326, 349, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3353, 352, '_wp_page_template', 'elementor_header_footer'),
(3355, 352, '_elementor_edit_mode', 'builder'),
(3356, 352, '_elementor_template_type', 'wp-page'),
(3357, 352, '_elementor_version', '3.34.4'),
(3358, 352, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3359, 352, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8e9010a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"6336f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"eb7cad2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e9f804b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9649993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8f45626\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e419b26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f3e0734\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b187468\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5c317e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"05c2c1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ba97fae\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"f3617a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3327, 349, '_elementor_page_settings', 'a:0:{}'),
(3330, 350, '_wp_page_template', 'elementor_header_footer'),
(3332, 350, '_elementor_edit_mode', 'builder'),
(3333, 350, '_elementor_template_type', 'wp-page'),
(3334, 350, '_elementor_version', '3.34.4'),
(3335, 350, '_elementor_pro_version', '3.25.4'),
(3336, 350, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3337, 350, '_elementor_page_settings', 'a:0:{}'),
(4332, 455, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4334, 456, '_wp_page_template', 'default'),
(4335, 456, '_elementor_edit_mode', 'builder'),
(4336, 456, '_elementor_template_type', 'wp-page'),
(4337, 456, '_elementor_version', '3.34.4'),
(4338, 456, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4339, 456, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3373, 354, '_wp_page_template', 'elementor_header_footer'),
(3375, 354, '_elementor_edit_mode', 'builder'),
(3376, 354, '_elementor_template_type', 'wp-page'),
(3377, 354, '_elementor_version', '3.34.4'),
(3378, 354, '_elementor_pro_version', '3.25.4'),
(3379, 354, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3340, 351, '_wp_page_template', 'elementor_header_footer'),
(3342, 351, '_elementor_edit_mode', 'builder'),
(3343, 351, '_elementor_template_type', 'wp-page'),
(3344, 351, '_elementor_version', '3.34.4'),
(3345, 351, '_elementor_pro_version', '3.25.4'),
(3346, 351, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8e9010a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"6336f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"eb7cad2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e9f804b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9649993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8f45626\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e419b26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f3e0734\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b187468\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5c317e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"05c2c1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ba97fae\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"f3617a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3403, 358, '_wp_page_template', 'elementor_header_footer'),
(3387, 356, '_wp_page_template', 'elementor_header_footer'),
(3389, 356, '_elementor_edit_mode', 'builder'),
(3390, 356, '_elementor_template_type', 'wp-page'),
(3391, 356, '_elementor_version', '3.34.4'),
(3392, 356, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3393, 356, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3384, 355, '_wp_attached_file', '2026/02/car_12835640.svg'),
(3385, 355, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5681;s:5:\"width\";i:500;s:6:\"height\";i:500;}'),
(4210, 440, '_elementor_template_type', 'wp-page'),
(4211, 440, '_elementor_version', '3.34.4'),
(4212, 440, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4213, 440, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3360, 352, '_elementor_page_settings', 'a:0:{}'),
(3363, 353, '_wp_page_template', 'elementor_header_footer'),
(3365, 353, '_elementor_edit_mode', 'builder'),
(3366, 353, '_elementor_template_type', 'wp-page'),
(3367, 353, '_elementor_version', '3.34.4'),
(3368, 353, '_elementor_pro_version', '3.25.4'),
(3369, 353, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8e9010a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}]},\"elements\":[{\"id\":\"6336f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"eb7cad2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e9f804b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9649993\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8f45626\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e419b26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f3e0734\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b187468\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5c317e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"05c2c1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ba97fae\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"f3617a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3370, 353, '_elementor_page_settings', 'a:0:{}'),
(3394, 356, '_elementor_page_settings', 'a:0:{}'),
(3395, 357, '_wp_page_template', 'elementor_header_footer'),
(3397, 357, '_elementor_edit_mode', 'builder'),
(3398, 357, '_elementor_template_type', 'wp-page'),
(3399, 357, '_elementor_version', '3.34.4'),
(3400, 357, '_elementor_pro_version', '3.25.4'),
(3401, 357, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3402, 357, '_elementor_page_settings', 'a:0:{}'),
(3405, 358, '_elementor_edit_mode', 'builder'),
(3406, 358, '_elementor_template_type', 'wp-page'),
(3407, 358, '_elementor_version', '3.34.4'),
(3408, 358, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3409, 358, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3428, 361, '_wp_page_template', 'elementor_header_footer'),
(3412, 359, '_wp_page_template', 'elementor_header_footer'),
(3414, 359, '_elementor_edit_mode', 'builder'),
(3415, 359, '_elementor_template_type', 'wp-page'),
(3416, 359, '_elementor_version', '3.34.4'),
(3417, 359, '_elementor_pro_version', '3.25.4'),
(3418, 359, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3419, 359, '_elementor_page_settings', 'a:0:{}'),
(3420, 360, '_wp_page_template', 'elementor_header_footer'),
(3422, 360, '_elementor_edit_mode', 'builder'),
(3423, 360, '_elementor_template_type', 'wp-page'),
(3424, 360, '_elementor_version', '3.34.4'),
(3425, 360, '_elementor_pro_version', '3.25.4'),
(3426, 360, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3427, 360, '_elementor_page_settings', 'a:0:{}'),
(3430, 361, '_elementor_edit_mode', 'builder'),
(3431, 361, '_elementor_template_type', 'wp-page'),
(3432, 361, '_elementor_version', '3.34.4'),
(3433, 361, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3434, 361, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3439, 362, '_wp_page_template', 'elementor_header_footer'),
(3441, 362, '_elementor_edit_mode', 'builder'),
(3442, 362, '_elementor_template_type', 'wp-page'),
(3443, 362, '_elementor_version', '3.34.4'),
(3444, 362, '_elementor_pro_version', '3.25.4'),
(3445, 362, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3921, 415, '_wp_page_template', 'elementor_header_footer'),
(3923, 415, '_elementor_edit_mode', 'builder'),
(3924, 415, '_elementor_template_type', 'wp-page'),
(3925, 415, '_elementor_version', '3.34.4'),
(3926, 415, '_elementor_pro_version', '3.25.4'),
(3927, 415, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4291, 450, '_wp_page_template', 'default'),
(4292, 450, '_elementor_edit_mode', 'builder'),
(4293, 450, '_elementor_template_type', 'wp-page'),
(4294, 450, '_elementor_version', '3.34.4'),
(4295, 450, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4296, 450, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3446, 362, '_elementor_page_settings', 'a:0:{}'),
(4324, 454, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4326, 455, '_wp_page_template', 'default'),
(4327, 455, '_elementor_edit_mode', 'builder'),
(4328, 455, '_elementor_template_type', 'wp-page'),
(4329, 455, '_elementor_version', '3.34.4'),
(4330, 455, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4331, 455, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3449, 363, '_wp_page_template', 'elementor_header_footer'),
(3451, 363, '_elementor_edit_mode', 'builder'),
(3452, 363, '_elementor_template_type', 'wp-page'),
(3453, 363, '_elementor_version', '3.34.4'),
(3454, 363, '_elementor_pro_version', '3.25.4'),
(3455, 363, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3456, 363, '_elementor_page_settings', 'a:0:{}'),
(4305, 451, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3459, 364, '_wp_page_template', 'elementor_header_footer'),
(3461, 364, '_elementor_edit_mode', 'builder'),
(3462, 364, '_elementor_template_type', 'wp-page'),
(3463, 364, '_elementor_version', '3.34.4'),
(3464, 364, '_elementor_pro_version', '3.25.4'),
(3465, 364, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4553, 479, '_wp_page_template', 'elementor_header_footer'),
(4533, 477, '_wp_page_template', 'elementor_header_footer'),
(4534, 477, '_elementor_edit_mode', 'builder'),
(4535, 477, '_elementor_template_type', 'wp-page'),
(4536, 477, '_elementor_version', '3.34.4'),
(4537, 477, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4538, 477, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3472, 38, '_elementor_edit_mode', 'builder'),
(3473, 38, '_astra_content_layout_flag', 'disabled'),
(3474, 38, 'ast-title-bar-display', 'disabled'),
(3475, 38, '_elementor_template_type', 'wp-page'),
(3476, 38, '_elementor_version', '3.34.4'),
(3477, 38, '_elementor_pro_version', '3.34.4'),
(3495, 38, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.\\n\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a2522b2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"7cfd04e\"},{\"text\":\"The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"aa1a5fa\"},{\"text\":\"Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"54d49e9\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b796380\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3479, 365, '_wp_attached_file', '2026/02/IV-Therapy-Services.jpeg'),
(3480, 365, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2026/02/IV-Therapy-Services.jpeg\";s:8:\"filesize\";i:97070;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"IV-Therapy-Services-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24558;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"IV-Therapy-Services-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8592;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"IV-Therapy-Services-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97450;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3481, 366, '_wp_page_template', 'elementor_header_footer'),
(3483, 366, '_elementor_edit_mode', 'builder'),
(3484, 366, '_elementor_template_type', 'wp-page'),
(3485, 366, '_elementor_version', '3.34.4'),
(3486, 366, '_elementor_pro_version', '3.25.4'),
(3487, 366, '_elementor_page_settings', 'a:0:{}'),
(3488, 367, '_wp_page_template', 'elementor_header_footer'),
(3490, 367, '_elementor_edit_mode', 'builder'),
(3491, 367, '_elementor_template_type', 'wp-page'),
(3492, 367, '_elementor_version', '3.34.4'),
(3493, 367, '_elementor_pro_version', '3.25.4'),
(3494, 367, '_elementor_page_settings', 'a:0:{}'),
(3496, 368, '_wp_page_template', 'elementor_header_footer'),
(3498, 368, '_elementor_edit_mode', 'builder'),
(3499, 368, '_elementor_template_type', 'wp-page'),
(3500, 368, '_elementor_version', '3.34.4'),
(3501, 368, '_elementor_pro_version', '3.25.4'),
(3502, 368, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3531, 373, '_wp_page_template', 'elementor_header_footer'),
(3511, 371, '_wp_page_template', 'elementor_header_footer'),
(3513, 371, '_elementor_edit_mode', 'builder'),
(3514, 371, '_elementor_template_type', 'wp-page'),
(3515, 371, '_elementor_version', '3.34.4'),
(3516, 371, '_elementor_pro_version', '3.25.4'),
(3517, 371, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3583, 377, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2026/02/Lymphati.jpeg\";s:8:\"filesize\";i:60456;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Lymphati-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Lymphati-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5715;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Lymphati-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3551, 374, '_wp_page_template', 'elementor_header_footer'),
(3553, 374, '_elementor_edit_mode', 'builder'),
(3554, 374, '_elementor_template_type', 'wp-page'),
(3555, 374, '_elementor_version', '3.34.4'),
(3556, 374, '_elementor_pro_version', '3.25.4'),
(3557, 374, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3584, 378, '_wp_attached_file', '2026/02/label_3388576.svg'),
(3585, 378, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1197;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3507, 369, '_wp_attached_file', '2026/02/IV-Therapy-Services.jpg'),
(3508, 369, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2026/02/IV-Therapy-Services.jpg\";s:8:\"filesize\";i:79737;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IV-Therapy-Services-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17990;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IV-Therapy-Services-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IV-Therapy-Services-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68721;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3509, 370, '_wp_attached_file', '2026/02/IV-Therapy-Services-1.jpg'),
(3510, 370, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:33:\"2026/02/IV-Therapy-Services-1.jpg\";s:8:\"filesize\";i:79737;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"IV-Therapy-Services-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:17990;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"IV-Therapy-Services-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:7315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"IV-Therapy-Services-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:68721;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3518, 371, '_elementor_page_settings', 'a:0:{}'),
(3521, 372, '_wp_page_template', 'elementor_header_footer'),
(3523, 372, '_elementor_edit_mode', 'builder'),
(3524, 372, '_elementor_template_type', 'wp-page'),
(3525, 372, '_elementor_version', '3.34.4'),
(3526, 372, '_elementor_pro_version', '3.25.4'),
(3527, 372, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3528, 372, '_elementor_page_settings', 'a:0:{}'),
(4299, 451, '_wp_page_template', 'default'),
(4300, 451, '_elementor_edit_mode', 'builder'),
(4301, 451, '_elementor_template_type', 'wp-page'),
(4302, 451, '_elementor_version', '3.34.4'),
(4303, 451, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4304, 451, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3533, 373, '_elementor_edit_mode', 'builder'),
(3534, 373, '_elementor_template_type', 'wp-page'),
(3535, 373, '_elementor_version', '3.34.4'),
(3536, 373, '_elementor_pro_version', '3.25.4'),
(3537, 373, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4297, 450, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4711, 494, '_wp_page_template', 'elementor_header_footer'),
(4712, 494, '_elementor_edit_mode', 'builder'),
(4713, 494, '_elementor_template_type', 'wp-page'),
(4714, 494, '_elementor_version', '3.34.4'),
(4715, 494, '_elementor_pro_version', '3.25.4'),
(4716, 494, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3582, 377, '_wp_attached_file', '2026/02/Lymphati.jpeg'),
(3544, 40, '_elementor_edit_mode', 'builder'),
(3545, 40, '_astra_content_layout_flag', 'disabled'),
(3546, 40, 'ast-title-bar-display', 'disabled'),
(3547, 40, '_elementor_template_type', 'wp-page'),
(3548, 40, '_elementor_version', '3.34.4'),
(3549, 40, '_elementor_pro_version', '3.25.4'),
(3601, 40, '_elementor_data', '[{\"id\":\"aeade64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"b1760fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3407266\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"18cdbb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f33d042\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lymphatic Massage  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db0cfbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed to support circulation, reduce fluid retention, improve body contouring, and promote overall wellness. Our services include Lymphatic Massage, Lipolaser, Radiofrequency, and Cavitation, performed by trained professionals using modern techniques.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0474c62\",\"elType\":\"widget\",\"settings\":{\"title\":\"All sessions are 90 minutes and customized to your individual needs.\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"1cd14cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aabb476\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9513646\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Single Session (90 minutes): $120\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Package of 3 Sessions: $330 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\" Package of 5 Sessions: $550 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Package of 10 Sessions: $1,000 (Equivalent to $100 per session \\u2013 best value)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f4856af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call today to schedule your appointment:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0c6b1aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf0c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"786-238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"pp_display_conditions\":[{\"_id\":\"2a6234d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3558, 374, '_elementor_page_settings', 'a:0:{}'),
(3561, 375, '_wp_page_template', 'elementor_header_footer'),
(3563, 375, '_elementor_edit_mode', 'builder'),
(3564, 375, '_elementor_template_type', 'wp-page'),
(3565, 375, '_elementor_version', '3.34.4'),
(3566, 375, '_elementor_pro_version', '3.25.4'),
(3567, 375, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3568, 375, '_elementor_page_settings', 'a:0:{}'),
(3571, 376, '_wp_page_template', 'elementor_header_footer'),
(3573, 376, '_elementor_edit_mode', 'builder'),
(3574, 376, '_elementor_template_type', 'wp-page'),
(3575, 376, '_elementor_version', '3.34.4'),
(3576, 376, '_elementor_pro_version', '3.25.4'),
(3577, 376, '_elementor_data', '[{\"id\":\"1b20595\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\"}]},\"elements\":[{\"id\":\"4ebbc4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f7c667a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services-1.jpg\",\"id\":370,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa5c5c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0d83fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"IV Therapy <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bacff8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.<\\/p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"15437d2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3587, 379, '_wp_page_template', 'elementor_header_footer'),
(3589, 379, '_elementor_edit_mode', 'builder'),
(3590, 379, '_elementor_template_type', 'wp-page'),
(3591, 379, '_elementor_version', '3.34.4'),
(3592, 379, '_elementor_pro_version', '3.25.4'),
(3593, 379, '_elementor_page_settings', 'a:0:{}'),
(3594, 380, '_wp_page_template', 'elementor_header_footer'),
(3596, 380, '_elementor_edit_mode', 'builder'),
(3597, 380, '_elementor_template_type', 'wp-page'),
(3598, 380, '_elementor_version', '3.34.4'),
(3599, 380, '_elementor_pro_version', '3.25.4'),
(3600, 380, '_elementor_page_settings', 'a:0:{}'),
(3602, 381, '_wp_page_template', 'elementor_header_footer'),
(3604, 381, '_elementor_edit_mode', 'builder'),
(3605, 381, '_elementor_template_type', 'wp-page'),
(3606, 381, '_elementor_version', '3.34.4'),
(3607, 381, '_elementor_pro_version', '3.25.4'),
(3608, 381, '_elementor_data', '[{\"id\":\"aeade64\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"b1760fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3407266\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"18cdbb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f33d042\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lymphatic Massage  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db0cfbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed to support circulation, reduce fluid retention, improve body contouring, and promote overall wellness. Our services include Lymphatic Massage, Lipolaser, Radiofrequency, and Cavitation, performed by trained professionals using modern techniques.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0474c62\",\"elType\":\"widget\",\"settings\":{\"title\":\"All sessions are 90 minutes and customized to your individual needs.\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"1cd14cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aabb476\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9513646\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Single Session (90 minutes): $120\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Package of 3 Sessions: $330 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\" Package of 5 Sessions: $550 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Package of 10 Sessions: $1,000 (Equivalent to $100 per session \\u2013 best value)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f4856af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call today to schedule your appointment:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0c6b1aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf0c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"786-238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"pp_display_conditions\":[{\"_id\":\"2a6234d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3609, 40, '_elementor_page_settings', 'a:0:{}'),
(3610, 40, '_elementor_controls_usage', 'a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:13:\"selected_icon\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3613, 42, '_elementor_edit_mode', 'builder'),
(3614, 42, '_astra_content_layout_flag', 'disabled'),
(3615, 42, 'ast-title-bar-display', 'disabled'),
(3616, 42, '_elementor_template_type', 'wp-page'),
(3617, 42, '_elementor_version', '3.34.4'),
(3618, 42, '_elementor_pro_version', '3.25.4'),
(3634, 42, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/473380-1-1.jpg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Annual physical exams and preventive screenings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\" Primary care for adults and children\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Chronic disease management (diabetes, hypertension, asthma, and more)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Sick visits and urgent medical concerns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Women\\u2019s and men\\u2019s health services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"22b13f2\"},{\"text\":\"Lab testing and diagnostic evaluations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"b25b4d0\"},{\"text\":\"Medication management and follow-up care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"95d51a0\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3620, 382, '_wp_page_template', 'elementor_header_footer'),
(3622, 382, '_elementor_edit_mode', 'builder'),
(3623, 382, '_elementor_template_type', 'wp-page'),
(3624, 382, '_elementor_version', '3.34.4'),
(3625, 382, '_elementor_pro_version', '3.25.4'),
(3626, 382, '_elementor_page_settings', 'a:0:{}'),
(3627, 383, '_wp_page_template', 'elementor_header_footer'),
(3629, 383, '_elementor_edit_mode', 'builder'),
(3630, 383, '_elementor_template_type', 'wp-page'),
(3631, 383, '_elementor_version', '3.34.4'),
(3632, 383, '_elementor_pro_version', '3.25.4'),
(3633, 383, '_elementor_page_settings', 'a:0:{}'),
(3673, 390, '_wp_page_template', 'elementor_header_footer'),
(3675, 390, '_elementor_edit_mode', 'builder'),
(3676, 390, '_elementor_template_type', 'wp-page'),
(3677, 390, '_elementor_version', '3.34.4'),
(3678, 390, '_elementor_pro_version', '3.25.4'),
(3679, 390, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Family-Medicine-2.jpeg\",\"id\":386,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Annual physical exams and preventive screenings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\" Primary care for adults and children\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Chronic disease management (diabetes, hypertension, asthma, and more)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Sick visits and urgent medical concerns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Women\\u2019s and men\\u2019s health services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"22b13f2\"},{\"text\":\"Lab testing and diagnostic evaluations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"b25b4d0\"},{\"text\":\"Medication management and follow-up care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"95d51a0\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3706, 394, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3686, 392, '_wp_page_template', 'elementor_header_footer'),
(3688, 392, '_elementor_edit_mode', 'builder'),
(3689, 392, '_elementor_template_type', 'wp-page'),
(3690, 392, '_elementor_version', '3.34.4'),
(3691, 392, '_elementor_pro_version', '3.25.4'),
(3692, 392, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Family-Medicine-2.jpeg\",\"id\":386,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Annual physical exams and preventive screenings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\" Primary care for adults and children\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Chronic disease management (diabetes, hypertension, asthma, and more)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Sick visits and urgent medical concerns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Women\\u2019s and men\\u2019s health services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"22b13f2\"},{\"text\":\"Lab testing and diagnostic evaluations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"b25b4d0\"},{\"text\":\"Medication management and follow-up care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"95d51a0\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3715, 42, '_elementor_page_settings', 'a:0:{}'),
(3716, 42, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3717, 46, '_elementor_edit_mode', 'builder'),
(3718, 46, '_astra_content_layout_flag', 'disabled'),
(3719, 46, 'ast-title-bar-display', 'disabled'),
(3720, 46, '_elementor_template_type', 'wp-page'),
(3721, 46, '_elementor_version', '3.34.4'),
(3722, 46, '_elementor_pro_version', '3.25.4'),
(3746, 46, '_elementor_data', '[{\"id\":\"ac4aeda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"9b4870f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c98641d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c98724c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3269b9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Physical Therapy & Rehabilitation   <span style=\\\"font-weight:300;\\\">After Car Accidents<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"012ec85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf4186f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Auto Accident & Physical Therapy Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fec84af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Post-accident evaluations and treatment plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Physical therapy for neck, back, and joint injuries\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Pain management and mobility restoration\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Muscle strengthening and injury rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Whiplash and soft tissue injury treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Coordination with attorneys and insurance providers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"},{\"text\":\"Detailed medical documentation for accident-related cases\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"f7f15b7\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3753, 398, '_elementor_data', '[{\"id\":\"ac4aeda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"9b4870f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c98641d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c98724c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3269b9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Physical Therapy & Rehabilitation   <span style=\\\"font-weight:300;\\\">After Car Accidents<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"012ec85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf4186f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Auto Accident & Physical Therapy Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fec84af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Post-accident evaluations and treatment plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Physical therapy for neck, back, and joint injuries\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Pain management and mobility restoration\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Muscle strengthening and injury rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Whiplash and soft tissue injury treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Coordination with attorneys and insurance providers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"},{\"text\":\"Detailed medical documentation for accident-related cases\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"f7f15b7\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3752, 398, '_elementor_pro_version', '3.25.4'),
(3747, 398, '_wp_page_template', 'elementor_header_footer'),
(3749, 398, '_elementor_edit_mode', 'builder'),
(3750, 398, '_elementor_template_type', 'wp-page'),
(3751, 398, '_elementor_version', '3.34.4'),
(3732, 396, '_wp_page_template', 'elementor_header_footer'),
(3734, 396, '_elementor_edit_mode', 'builder'),
(3735, 396, '_elementor_template_type', 'wp-page'),
(3736, 396, '_elementor_version', '3.34.4'),
(3737, 396, '_elementor_pro_version', '3.25.4'),
(3738, 396, '_elementor_page_settings', 'a:0:{}'),
(3739, 397, '_wp_page_template', 'elementor_header_footer'),
(3741, 397, '_elementor_edit_mode', 'builder'),
(3742, 397, '_elementor_template_type', 'wp-page'),
(3743, 397, '_elementor_version', '3.34.4'),
(3744, 397, '_elementor_pro_version', '3.25.4'),
(3745, 397, '_elementor_page_settings', 'a:0:{}'),
(3684, 391, '_wp_attached_file', '2026/02/473380-1-1.jpg'),
(3685, 391, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2026/02/473380-1-1.jpg\";s:8:\"filesize\";i:87082;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"473380-1-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:19890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"473380-1-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:6982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"473380-1-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:84153;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3693, 392, '_elementor_page_settings', 'a:0:{}'),
(3696, 393, '_wp_page_template', 'elementor_header_footer'),
(3698, 393, '_elementor_edit_mode', 'builder'),
(3699, 393, '_elementor_template_type', 'wp-page'),
(3700, 393, '_elementor_version', '3.34.4'),
(3701, 393, '_elementor_pro_version', '3.25.4'),
(3702, 393, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Family-Medicine-2.jpeg\",\"id\":386,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Annual physical exams and preventive screenings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\" Primary care for adults and children\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Chronic disease management (diabetes, hypertension, asthma, and more)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Sick visits and urgent medical concerns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Women\\u2019s and men\\u2019s health services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"22b13f2\"},{\"text\":\"Lab testing and diagnostic evaluations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"b25b4d0\"},{\"text\":\"Medication management and follow-up care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"95d51a0\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3703, 393, '_elementor_page_settings', 'a:0:{}'),
(4287, 448, '_wp_attached_file', '2026/02/Roman-Martinez-Faife.jpg'),
(4288, 448, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2026/02/Roman-Martinez-Faife.jpg\";s:8:\"filesize\";i:54508;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Roman-Martinez-Faife-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11476;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Roman-Martinez-Faife-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5057;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Roman-Martinez-Faife-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46241;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4289, 449, '_wp_attached_file', '2026/02/Irma-Maria-Valdes-Sepulveda.jpg'),
(4290, 449, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2026/02/Irma-Maria-Valdes-Sepulveda.jpg\";s:8:\"filesize\";i:48113;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Irma-Maria-Valdes-Sepulveda-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11816;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Irma-Maria-Valdes-Sepulveda-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Irma-Maria-Valdes-Sepulveda-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43275;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3708, 394, '_elementor_edit_mode', 'builder'),
(3709, 394, '_elementor_template_type', 'wp-page'),
(3710, 394, '_elementor_version', '3.34.4'),
(3711, 394, '_elementor_pro_version', '3.25.4'),
(3712, 394, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/473380-1-1.jpg\",\"id\":391,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Annual physical exams and preventive screenings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\" Primary care for adults and children\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Chronic disease management (diabetes, hypertension, asthma, and more)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Sick visits and urgent medical concerns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Women\\u2019s and men\\u2019s health services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"22b13f2\"},{\"text\":\"Lab testing and diagnostic evaluations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"b25b4d0\"},{\"text\":\"Medication management and follow-up care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"95d51a0\"}],\"space_between\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4310, 452, '_elementor_version', '3.34.4'),
(4311, 452, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4312, 452, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3778, 401, '_wp_page_template', 'elementor_header_footer'),
(3758, 399, '_wp_page_template', 'elementor_header_footer'),
(3760, 399, '_elementor_edit_mode', 'builder'),
(3761, 399, '_elementor_template_type', 'wp-page'),
(3762, 399, '_elementor_version', '3.34.4'),
(3763, 399, '_elementor_pro_version', '3.25.4'),
(3764, 399, '_elementor_data', '[{\"id\":\"ac4aeda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"9b4870f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c98641d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c98724c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3269b9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Physical Therapy & Rehabilitation   <span style=\\\"font-weight:300;\\\">After Car Accidents<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"012ec85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf4186f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Auto Accident & Physical Therapy Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fec84af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Post-accident evaluations and treatment plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Physical therapy for neck, back, and joint injuries\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Pain management and mobility restoration\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Muscle strengthening and injury rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Whiplash and soft tissue injury treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Coordination with attorneys and insurance providers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"},{\"text\":\"Detailed medical documentation for accident-related cases\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"f7f15b7\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3787, 46, '_elementor_page_settings', 'a:0:{}'),
(3788, 46, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3765, 399, '_elementor_page_settings', 'a:0:{}'),
(3768, 400, '_wp_page_template', 'elementor_header_footer'),
(3770, 400, '_elementor_edit_mode', 'builder'),
(3771, 400, '_elementor_template_type', 'wp-page'),
(3772, 400, '_elementor_version', '3.34.4'),
(3773, 400, '_elementor_pro_version', '3.25.4'),
(3774, 400, '_elementor_data', '[{\"id\":\"ac4aeda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"9b4870f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c98641d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c98724c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3269b9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Physical Therapy & Rehabilitation   <span style=\\\"font-weight:300;\\\">After Car Accidents<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"012ec85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf4186f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Auto Accident & Physical Therapy Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fec84af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Post-accident evaluations and treatment plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Physical therapy for neck, back, and joint injuries\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Pain management and mobility restoration\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Muscle strengthening and injury rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Whiplash and soft tissue injury treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Coordination with attorneys and insurance providers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"},{\"text\":\"Detailed medical documentation for accident-related cases\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"f7f15b7\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3775, 400, '_elementor_page_settings', 'a:0:{}'),
(3780, 401, '_elementor_edit_mode', 'builder'),
(3781, 401, '_elementor_template_type', 'wp-page'),
(3782, 401, '_elementor_version', '3.34.4'),
(3783, 401, '_elementor_pro_version', '3.25.4'),
(3784, 401, '_elementor_data', '[{\"id\":\"ac4aeda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"9b4870f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c98641d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c98724c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3269b9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Physical Therapy & Rehabilitation   <span style=\\\"font-weight:300;\\\">After Car Accidents<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"012ec85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf4186f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Auto Accident & Physical Therapy Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fec84af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Post-accident evaluations and treatment plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Physical therapy for neck, back, and joint injuries\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Pain management and mobility restoration\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Muscle strengthening and injury rehabilitation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Whiplash and soft tissue injury treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Coordination with attorneys and insurance providers\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"},{\"text\":\"Detailed medical documentation for accident-related cases\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"f7f15b7\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3791, 44, '_elementor_edit_mode', 'builder'),
(3792, 44, '_astra_content_layout_flag', 'disabled'),
(3793, 44, 'ast-title-bar-display', 'disabled'),
(3794, 44, '_elementor_template_type', 'wp-page'),
(3795, 44, '_elementor_version', '3.34.4'),
(3796, 44, '_elementor_pro_version', '3.25.4'),
(3812, 44, '_elementor_data', '[{\"id\":\"9c0d519\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"d2d7198\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"adda330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Wellness-Beauty.jpg\",\"id\":405,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1af3297\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1558233\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa77b00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d22e91e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7422994\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Medical weight management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Vitamin injections and IV therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Hormone optimization\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Skin rejuvenation treatments\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Anti-aging and aesthetic wellness services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Personalized wellness plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3798, 402, '_wp_page_template', 'elementor_header_footer'),
(3800, 402, '_elementor_edit_mode', 'builder'),
(3801, 402, '_elementor_template_type', 'wp-page'),
(3802, 402, '_elementor_version', '3.34.4'),
(3803, 402, '_elementor_pro_version', '3.25.4'),
(3804, 402, '_elementor_page_settings', 'a:0:{}'),
(3805, 403, '_wp_page_template', 'elementor_header_footer'),
(3807, 403, '_elementor_edit_mode', 'builder'),
(3808, 403, '_elementor_template_type', 'wp-page'),
(3809, 403, '_elementor_version', '3.34.4'),
(3810, 403, '_elementor_pro_version', '3.25.4'),
(3811, 403, '_elementor_page_settings', 'a:0:{}'),
(3813, 404, '_wp_page_template', 'elementor_header_footer'),
(3815, 404, '_elementor_edit_mode', 'builder'),
(3816, 404, '_elementor_template_type', 'wp-page'),
(3817, 404, '_elementor_version', '3.34.4'),
(3818, 404, '_elementor_pro_version', '3.25.4'),
(3819, 404, '_elementor_data', '[{\"id\":\"9c0d519\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"d2d7198\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"adda330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1af3297\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1558233\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa77b00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d22e91e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7422994\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Medical weight management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Vitamin injections and IV therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Hormone optimization\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Skin rejuvenation treatments\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Anti-aging and aesthetic wellness services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Personalized wellness plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3846, 408, '_wp_page_template', 'elementor_header_footer'),
(3826, 406, '_wp_page_template', 'elementor_header_footer'),
(3828, 406, '_elementor_edit_mode', 'builder'),
(3829, 406, '_elementor_template_type', 'wp-page'),
(3830, 406, '_elementor_version', '3.34.4'),
(3831, 406, '_elementor_pro_version', '3.25.4'),
(3832, 406, '_elementor_data', '[{\"id\":\"9c0d519\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"d2d7198\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"adda330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1af3297\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1558233\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa77b00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d22e91e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7422994\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Medical weight management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Vitamin injections and IV therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Hormone optimization\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Skin rejuvenation treatments\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Anti-aging and aesthetic wellness services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Personalized wellness plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3855, 44, '_elementor_page_settings', 'a:0:{}'),
(3856, 44, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3824, 405, '_wp_attached_file', '2026/02/Wellness-Beauty.jpg'),
(3825, 405, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2026/02/Wellness-Beauty.jpg\";s:8:\"filesize\";i:43596;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Wellness-Beauty-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10903;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Wellness-Beauty-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4962;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Wellness-Beauty-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40144;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3833, 406, '_elementor_page_settings', 'a:0:{}'),
(3836, 407, '_wp_page_template', 'elementor_header_footer'),
(3838, 407, '_elementor_edit_mode', 'builder'),
(3839, 407, '_elementor_template_type', 'wp-page'),
(3840, 407, '_elementor_version', '3.34.4'),
(3841, 407, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3842, 407, '_elementor_data', '[{\"id\":\"9c0d519\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"d2d7198\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"adda330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/IV-Therapy-Services.jpeg\",\"id\":365,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1af3297\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1558233\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa77b00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d22e91e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7422994\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Medical weight management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Vitamin injections and IV therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Hormone optimization\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Skin rejuvenation treatments\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Anti-aging and aesthetic wellness services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Personalized wellness plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3843, 407, '_elementor_page_settings', 'a:0:{}'),
(4267, 445, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3848, 408, '_elementor_edit_mode', 'builder'),
(3849, 408, '_elementor_template_type', 'wp-page'),
(3850, 408, '_elementor_version', '3.34.4'),
(3851, 408, '_elementor_pro_version', '3.25.4'),
(3852, 408, '_elementor_data', '[{\"id\":\"9c0d519\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"d2d7198\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"adda330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Wellness-Beauty.jpg\",\"id\":405,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e58a88d\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1af3297\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1558233\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty  <span style=\\\"font-weight:300;\\\">Services<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa77b00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.\",\"pp_display_conditions\":[{\"_id\":\"15437d2\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d22e91e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness & Beauty Services Include:\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"6127c69\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7422994\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Medical weight management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\"},{\"text\":\"Vitamin injections and IV therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"c3dee5e\"},{\"text\":\"Hormone optimization\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"06e84b3\"},{\"text\":\"Skin rejuvenation treatments\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"482af81\"},{\"text\":\"Anti-aging and aesthetic wellness services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"afd15f5\"},{\"text\":\"Personalized wellness plans\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"5edcc36\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b24e798\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3870, 409, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4395, 464, '_wp_page_template', 'default'),
(4396, 464, '_elementor_edit_mode', 'builder'),
(4397, 464, '_elementor_template_type', 'wp-page'),
(4398, 464, '_elementor_version', '3.34.4'),
(4359, 459, '_wp_page_template', 'default'),
(4360, 459, '_elementor_edit_mode', 'builder'),
(4307, 452, '_wp_page_template', 'default'),
(4308, 452, '_elementor_edit_mode', 'builder'),
(4309, 452, '_elementor_template_type', 'wp-page'),
(4261, 445, '_wp_page_template', 'default'),
(4262, 445, '_elementor_edit_mode', 'builder'),
(4263, 445, '_elementor_template_type', 'wp-page'),
(4264, 445, '_elementor_version', '3.34.4'),
(4265, 445, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4266, 445, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3873, 410, '_wp_page_template', 'default'),
(3874, 410, '_elementor_edit_mode', 'builder'),
(3875, 410, '_elementor_template_type', 'wp-page'),
(3876, 410, '_elementor_version', '3.34.4'),
(3877, 410, '_elementor_pro_version', '3.25.4'),
(3878, 410, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3635, 384, '_wp_page_template', 'elementor_header_footer'),
(3637, 384, '_elementor_edit_mode', 'builder'),
(3638, 384, '_elementor_template_type', 'wp-page'),
(3639, 384, '_elementor_version', '3.34.4'),
(3640, 384, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3641, 384, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"caption_source\":\"none\",\"caption\":\"\",\"link_to\":\"none\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"open_lightbox\":\"default\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"\",\"object-fit_widescreen\":\"\",\"object-fit_tablet_extra\":\"\",\"object-fit_tablet\":\"\",\"object-fit_mobile_extra\":\"\",\"object-fit_mobile\":\"\",\"object-position\":\"center center\",\"object-position_widescreen\":\"\",\"object-position_tablet_extra\":\"\",\"object-position_tablet\":\"\",\"object-position_mobile_extra\":\"\",\"object-position_mobile\":\"\",\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_css_filter\":\"\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_css_filter\":\"\",\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"image_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"caption_align\":\"\",\"caption_align_widescreen\":\"\",\"caption_align_tablet_extra\":\"\",\"caption_align_tablet\":\"\",\"caption_align_mobile_extra\":\"\",\"caption_align_mobile\":\"\",\"text_color\":\"\",\"caption_background_color\":\"\",\"caption_typography_typography\":\"\",\"caption_typography_font_family\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_weight\":\"\",\"caption_typography_text_transform\":\"\",\"caption_typography_font_style\":\"\",\"caption_typography_text_decoration\":\"\",\"caption_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_text_shadow_text_shadow_type\":\"\",\"caption_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"e58a88d\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"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-01-29 to 2026-02-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"15437d2\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h6\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"6127c69\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"view\":\"traditional\",\"icon_list\":[{\"text\":\"Single Session (90 minutes): $120\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Package of 3 Sessions: $330 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c3dee5e\"},{\"text\":\" Package of 5 Sessions: $550 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"06e84b3\"},{\"text\":\"Package of 10 Sessions: $1,000 (Equivalent to $100 per session \\u2013 best value)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"482af81\"}],\"link_click\":\"full_width\",\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"space_between_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"\",\"icon_align_widescreen\":\"\",\"icon_align_tablet_extra\":\"\",\"icon_align_tablet\":\"\",\"icon_align_mobile_extra\":\"\",\"icon_align_mobile\":\"\",\"divider\":\"\",\"divider_style\":\"solid\",\"divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"divider_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_color\":\"#ddd\",\"icon_color\":\"\",\"icon_color_hover\":\"\",\"icon_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"\",\"icon_self_align_widescreen\":\"\",\"icon_self_align_tablet_extra\":\"\",\"icon_self_align_tablet\":\"\",\"icon_self_align_mobile_extra\":\"\",\"icon_self_align_mobile\":\"\",\"icon_self_vertical_align\":\"flex-start\",\"icon_self_vertical_align_widescreen\":\"\",\"icon_self_vertical_align_tablet_extra\":\"\",\"icon_self_vertical_align_tablet\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile\":\"\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_vertical_offset_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"\",\"icon_typography_font_family\":\"\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_weight\":\"\",\"icon_typography_text_transform\":\"\",\"icon_typography_font_style\":\"\",\"icon_typography_text_decoration\":\"\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"text_color\":\"\",\"text_color_hover\":\"\",\"text_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"b24e798\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a7732bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call today to schedule your appointment:\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h6\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"0c6b1aa\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca01bb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"\",\"text\":\"786-238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"2a6234d\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3657, 388, '_wp_page_template', 'elementor_header_footer'),
(3659, 388, '_elementor_edit_mode', 'builder'),
(3660, 388, '_elementor_template_type', 'wp-page'),
(3661, 388, '_elementor_version', '3.34.4'),
(3662, 388, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3663, 388, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"caption_source\":\"none\",\"caption\":\"\",\"link_to\":\"none\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"open_lightbox\":\"default\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"\",\"object-fit_widescreen\":\"\",\"object-fit_tablet_extra\":\"\",\"object-fit_tablet\":\"\",\"object-fit_mobile_extra\":\"\",\"object-fit_mobile\":\"\",\"object-position\":\"center center\",\"object-position_widescreen\":\"\",\"object-position_tablet_extra\":\"\",\"object-position_tablet\":\"\",\"object-position_mobile_extra\":\"\",\"object-position_mobile\":\"\",\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_css_filter\":\"\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_css_filter\":\"\",\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"image_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"caption_align\":\"\",\"caption_align_widescreen\":\"\",\"caption_align_tablet_extra\":\"\",\"caption_align_tablet\":\"\",\"caption_align_mobile_extra\":\"\",\"caption_align_mobile\":\"\",\"text_color\":\"\",\"caption_background_color\":\"\",\"caption_typography_typography\":\"\",\"caption_typography_font_family\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_weight\":\"\",\"caption_typography_text_transform\":\"\",\"caption_typography_font_style\":\"\",\"caption_typography_text_decoration\":\"\",\"caption_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_text_shadow_text_shadow_type\":\"\",\"caption_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"e58a88d\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"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-01-29 to 2026-02-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"15437d2\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h6\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"6127c69\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"view\":\"traditional\",\"icon_list\":[{\"text\":\"Single Session (90 minutes): $120\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Package of 3 Sessions: $330 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c3dee5e\"},{\"text\":\" Package of 5 Sessions: $550 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"06e84b3\"},{\"text\":\"Package of 10 Sessions: $1,000 (Equivalent to $100 per session \\u2013 best value)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"482af81\"}],\"link_click\":\"full_width\",\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"space_between_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"\",\"icon_align_widescreen\":\"\",\"icon_align_tablet_extra\":\"\",\"icon_align_tablet\":\"\",\"icon_align_mobile_extra\":\"\",\"icon_align_mobile\":\"\",\"divider\":\"\",\"divider_style\":\"solid\",\"divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"divider_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_color\":\"#ddd\",\"icon_color\":\"\",\"icon_color_hover\":\"\",\"icon_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"\",\"icon_self_align_widescreen\":\"\",\"icon_self_align_tablet_extra\":\"\",\"icon_self_align_tablet\":\"\",\"icon_self_align_mobile_extra\":\"\",\"icon_self_align_mobile\":\"\",\"icon_self_vertical_align\":\"flex-start\",\"icon_self_vertical_align_widescreen\":\"\",\"icon_self_vertical_align_tablet_extra\":\"\",\"icon_self_vertical_align_tablet\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile\":\"\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_vertical_offset_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"\",\"icon_typography_font_family\":\"\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_weight\":\"\",\"icon_typography_text_transform\":\"\",\"icon_typography_font_style\":\"\",\"icon_typography_text_decoration\":\"\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"text_color\":\"\",\"text_color_hover\":\"\",\"text_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"b24e798\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a7732bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call today to schedule your appointment:\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h6\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"0c6b1aa\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca01bb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"\",\"text\":\"786-238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"2a6234d\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3644, 385, '_wp_attached_file', '2026/02/Family-Medicine.jpeg'),
(3645, 385, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2026/02/Family-Medicine.jpeg\";s:8:\"filesize\";i:522969;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Family-Medicine-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Family-Medicine-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8257;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Family-Medicine-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94036;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3646, 386, '_wp_attached_file', '2026/02/Family-Medicine-2.jpeg'),
(3647, 386, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2026/02/Family-Medicine-2.jpeg\";s:8:\"filesize\";i:94399;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Family-Medicine-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:22405;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Family-Medicine-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:7787;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Family-Medicine-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:93597;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3880, 410, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3664, 388, '_elementor_page_settings', 'a:0:{}'),
(3665, 389, '_wp_page_template', 'elementor_header_footer'),
(3667, 389, '_elementor_edit_mode', 'builder'),
(3668, 389, '_elementor_template_type', 'wp-page'),
(3669, 389, '_elementor_version', '3.34.4'),
(3670, 389, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3671, 389, '_elementor_data', '[{\"id\":\"3a9243c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ca969d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1fc83f9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3486193\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fd1ecf4\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}]},\"elements\":[{\"id\":\"ff4af8a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1144197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8743dc6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b2374b6\"}],\"pp_display_conditions\":[{\"_id\":\"52d7e3b\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c4c6cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Lymphati.jpeg\",\"id\":377,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"caption_source\":\"none\",\"caption\":\"\",\"link_to\":\"none\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"open_lightbox\":\"default\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"\",\"object-fit_widescreen\":\"\",\"object-fit_tablet_extra\":\"\",\"object-fit_tablet\":\"\",\"object-fit_mobile_extra\":\"\",\"object-fit_mobile\":\"\",\"object-position\":\"center center\",\"object-position_widescreen\":\"\",\"object-position_tablet_extra\":\"\",\"object-position_tablet\":\"\",\"object-position_mobile_extra\":\"\",\"object-position_mobile\":\"\",\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_css_filter\":\"\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_css_filter\":\"\",\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"image_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"caption_align\":\"\",\"caption_align_widescreen\":\"\",\"caption_align_tablet_extra\":\"\",\"caption_align_tablet\":\"\",\"caption_align_mobile_extra\":\"\",\"caption_align_mobile\":\"\",\"text_color\":\"\",\"caption_background_color\":\"\",\"caption_typography_typography\":\"\",\"caption_typography_font_family\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_weight\":\"\",\"caption_typography_text_transform\":\"\",\"caption_typography_font_style\":\"\",\"caption_typography_text_decoration\":\"\",\"caption_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_text_shadow_text_shadow_type\":\"\",\"caption_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"e58a88d\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"663a8a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d5e4e54\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"71a5ef0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8e88f9e\"}],\"pp_display_conditions\":[{\"_id\":\"9d756d0\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9f0e370\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family  <span style=\\\"font-weight:300;\\\">Medicine<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\",\"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-01-29 to 2026-02-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8df8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"15437d2\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:06\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8748e38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Medicine Services Include:\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h6\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"6127c69\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aa472c\",\"elType\":\"widget\",\"settings\":{\"view\":\"traditional\",\"icon_list\":[{\"text\":\"Single Session (90 minutes): $120\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"_id\":\"1bbc643\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Package of 3 Sessions: $330 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c3dee5e\"},{\"text\":\" Package of 5 Sessions: $550 (Equivalent to $110 per session)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"06e84b3\"},{\"text\":\"Package of 10 Sessions: $1,000 (Equivalent to $100 per session \\u2013 best value)\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":378},\"library\":\"svg\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"482af81\"}],\"link_click\":\"full_width\",\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"space_between_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"\",\"icon_align_widescreen\":\"\",\"icon_align_tablet_extra\":\"\",\"icon_align_tablet\":\"\",\"icon_align_mobile_extra\":\"\",\"icon_align_mobile\":\"\",\"divider\":\"\",\"divider_style\":\"solid\",\"divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"divider_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_color\":\"#ddd\",\"icon_color\":\"\",\"icon_color_hover\":\"\",\"icon_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"\",\"icon_self_align_widescreen\":\"\",\"icon_self_align_tablet_extra\":\"\",\"icon_self_align_tablet\":\"\",\"icon_self_align_mobile_extra\":\"\",\"icon_self_align_mobile\":\"\",\"icon_self_vertical_align\":\"flex-start\",\"icon_self_vertical_align_widescreen\":\"\",\"icon_self_vertical_align_tablet_extra\":\"\",\"icon_self_vertical_align_tablet\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile\":\"\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_vertical_offset_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"\",\"icon_typography_font_family\":\"\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_weight\":\"\",\"icon_typography_text_transform\":\"\",\"icon_typography_font_style\":\"\",\"icon_typography_text_decoration\":\"\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"text_color\":\"\",\"text_color_hover\":\"\",\"text_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"b24e798\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a7732bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call today to schedule your appointment:\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h6\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"0c6b1aa\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca01bb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"\",\"text\":\"786-238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_display_conditions\":[{\"pp_condition_key\":\"authentication\",\"pp_condition_operator\":\"is\",\"pp_condition_authentication_value\":\"authenticated\",\"_id\":\"2a6234d\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"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-01-29 to 2026-02-04\",\"pp_condition_date_time_before_value\":\"2026-02-04 11:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3672, 389, '_elementor_page_settings', 'a:0:{}'),
(4257, 444, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3883, 411, '_wp_page_template', 'default'),
(3884, 411, '_elementor_edit_mode', 'builder'),
(3885, 411, '_elementor_template_type', 'wp-page'),
(3886, 411, '_elementor_version', '3.34.4'),
(3887, 411, '_elementor_pro_version', '3.25.4'),
(3888, 411, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3890, 411, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4251, 444, '_wp_page_template', 'default'),
(4252, 444, '_elementor_edit_mode', 'builder'),
(4253, 444, '_elementor_template_type', 'wp-page'),
(4254, 444, '_elementor_version', '3.34.4'),
(4255, 444, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4256, 444, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3909, 413, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3910, 414, '_wp_page_template', 'default'),
(3911, 414, '_elementor_edit_mode', 'builder'),
(3912, 414, '_elementor_template_type', 'wp-page'),
(3913, 414, '_elementor_version', '3.34.4'),
(3914, 414, '_elementor_pro_version', '3.25.4'),
(3915, 414, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3917, 414, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3954, 418, '_wp_page_template', 'default'),
(3955, 418, '_elementor_edit_mode', 'builder'),
(3956, 418, '_elementor_template_type', 'wp-page'),
(3957, 418, '_elementor_version', '3.34.4'),
(3958, 418, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3959, 418, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3987, 421, '_wp_page_template', 'default'),
(3988, 421, '_elementor_edit_mode', 'builder'),
(3989, 421, '_elementor_template_type', 'wp-page'),
(3990, 421, '_elementor_version', '3.34.4'),
(3991, 421, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3992, 421, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5215896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"2d3e100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4162, 436, '_wp_page_template', 'default'),
(4163, 436, '_elementor_edit_mode', 'builder'),
(4164, 436, '_elementor_template_type', 'wp-page'),
(4165, 436, '_elementor_version', '3.34.4'),
(4166, 436, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4167, 436, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"0163d33\"},{\"slide_title\":\"Slide #2\",\"_id\":\"3bf53af\"},{\"slide_title\":\"Slide #3\",\"_id\":\"0de6dd6\"},{\"slide_title\":\"Slide #3\",\"_id\":\"ca9455e\"}],\"slides_to_show\":\"4\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[{\"id\":\"405afdf\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"c12ff69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c5b98d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4849e1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"e4bdc1f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #2\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c42fcce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"45dcfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e09ce13\"}],\"pp_display_conditions\":[{\"_id\":\"9fcefdf\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"a23e5e0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"b40eccb\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3928, 415, '_elementor_page_settings', 'a:0:{}'),
(3931, 416, '_wp_page_template', 'elementor_header_footer'),
(3933, 416, '_elementor_edit_mode', 'builder'),
(3934, 416, '_elementor_template_type', 'wp-page'),
(3935, 416, '_elementor_version', '3.34.4'),
(3936, 416, '_elementor_pro_version', '3.25.4'),
(3937, 416, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor3\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3938, 416, '_elementor_page_settings', 'a:0:{}'),
(4247, 443, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3941, 417, '_wp_page_template', 'elementor_header_footer'),
(3943, 417, '_elementor_edit_mode', 'builder'),
(3944, 417, '_elementor_template_type', 'wp-page'),
(3945, 417, '_elementor_version', '3.34.4'),
(3946, 417, '_elementor_pro_version', '3.25.4'),
(3947, 417, '_elementor_data', '[{\"id\":\"3c1e7c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"9884a26\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e722f90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56a1f41\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c7bd61a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6aa66c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"978b162\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ea7ff47\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f21d22b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5af2016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9220dc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fdfaba8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e35c09\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87d29a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8c086d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/car_12835640.svg\",\"id\":355},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Physical Therapy & Rehabilitation After Car Accidents\",\"description_text\":\"If you\\u2019ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef75ddb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:38\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/physical-therapy-rehabilitation-after-car-accidents\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3961, 418, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4234, 442, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3964, 419, '_wp_page_template', 'default'),
(3965, 419, '_elementor_edit_mode', 'builder'),
(3966, 419, '_elementor_template_type', 'wp-page'),
(3967, 419, '_elementor_version', '3.34.4'),
(3968, 419, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3969, 419, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3971, 419, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4399, 464, '_elementor_pro_version', '3.34.4'),
(4228, 442, '_wp_page_template', 'default'),
(4229, 442, '_elementor_edit_mode', 'builder'),
(4230, 442, '_elementor_template_type', 'wp-page'),
(4231, 442, '_elementor_version', '3.34.4'),
(4232, 442, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4233, 442, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3974, 420, '_wp_page_template', 'default'),
(3975, 420, '_elementor_edit_mode', 'builder'),
(3976, 420, '_elementor_template_type', 'wp-page'),
(3977, 420, '_elementor_version', '3.34.4'),
(3978, 420, '_elementor_pro_version', '3.25.4'),
(3979, 420, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5215896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"2d3e100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3981, 420, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4020, 424, '_wp_page_template', 'default'),
(4021, 424, '_elementor_edit_mode', 'builder'),
(4022, 424, '_elementor_template_type', 'wp-page'),
(4023, 424, '_elementor_version', '3.34.4'),
(4024, 424, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4025, 424, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#D1D5DB\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4313, 452, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3994, 421, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4224, 441, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3997, 422, '_wp_page_template', 'default'),
(3998, 422, '_elementor_edit_mode', 'builder'),
(3999, 422, '_elementor_template_type', 'wp-page'),
(4000, 422, '_elementor_version', '3.34.4'),
(4001, 422, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4002, 422, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5215896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"2d3e100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4004, 422, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4218, 441, '_wp_page_template', 'default'),
(4219, 441, '_elementor_edit_mode', 'builder'),
(4220, 441, '_elementor_template_type', 'wp-page'),
(4221, 441, '_elementor_version', '3.34.4'),
(4222, 441, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4223, 441, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4007, 423, '_wp_page_template', 'default'),
(4008, 423, '_elementor_edit_mode', 'builder'),
(4009, 423, '_elementor_template_type', 'wp-page'),
(4010, 423, '_elementor_version', '3.34.4'),
(4011, 423, '_elementor_pro_version', '3.25.4'),
(4012, 423, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#D1D5DB\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4014, 423, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4214, 440, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4053, 427, '_wp_page_template', 'default'),
(4054, 427, '_elementor_edit_mode', 'builder'),
(4055, 427, '_elementor_template_type', 'wp-page'),
(4056, 427, '_elementor_version', '3.34.4'),
(4057, 427, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4058, 427, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4142, 434, '_wp_page_template', 'default'),
(4143, 434, '_elementor_edit_mode', 'builder'),
(4144, 434, '_elementor_template_type', 'wp-page'),
(4145, 434, '_elementor_version', '3.34.4'),
(4146, 434, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4147, 434, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"0163d33\"},{\"slide_title\":\"Slide #2\",\"_id\":\"3bf53af\"},{\"slide_title\":\"Slide #3\",\"_id\":\"0de6dd6\"},{\"slide_title\":\"Slide #3\",\"_id\":\"ca9455e\"}],\"slides_to_show\":\"4\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[{\"id\":\"405afdf\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"c12ff69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c5b98d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4849e1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"e4bdc1f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #2\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c42fcce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"45dcfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e09ce13\"}],\"pp_display_conditions\":[{\"_id\":\"9fcefdf\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"a23e5e0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"b40eccb\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4027, 424, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4241, 443, '_wp_page_template', 'default'),
(4242, 443, '_elementor_edit_mode', 'builder'),
(4243, 443, '_elementor_template_type', 'wp-page'),
(4244, 443, '_elementor_version', '3.34.4'),
(4245, 443, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4246, 443, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4030, 425, '_wp_page_template', 'default'),
(4031, 425, '_elementor_edit_mode', 'builder'),
(4032, 425, '_elementor_template_type', 'wp-page'),
(4033, 425, '_elementor_version', '3.34.4'),
(4034, 425, '_elementor_pro_version', '3.25.4'),
(4035, 425, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#D1D5DB\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4037, 425, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4040, 426, '_wp_page_template', 'default'),
(4041, 426, '_elementor_edit_mode', 'builder'),
(4042, 426, '_elementor_template_type', 'wp-page'),
(4043, 426, '_elementor_version', '3.34.4'),
(4044, 426, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4045, 426, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4047, 426, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4201, 439, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4097, 431, '_wp_page_template', 'default'),
(4098, 431, '_elementor_edit_mode', 'builder'),
(4099, 431, '_elementor_template_type', 'wp-page'),
(4100, 431, '_elementor_version', '3.34.4'),
(4101, 431, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4102, 431, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4060, 427, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4829, 506, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4400, 464, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4195, 439, '_wp_page_template', 'default'),
(4196, 439, '_elementor_edit_mode', 'builder'),
(4197, 439, '_elementor_template_type', 'wp-page'),
(4198, 439, '_elementor_version', '3.34.4'),
(4199, 439, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4200, 439, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"8c489c2\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"}],\"slides_to_show\":\"4\",\"offset_sides\":\"right\",\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"0fbd613\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"44da6ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dd4a9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9b31e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4063, 428, '_wp_page_template', 'default'),
(4064, 428, '_elementor_edit_mode', 'builder'),
(4065, 428, '_elementor_template_type', 'wp-page'),
(4066, 428, '_elementor_version', '3.34.4'),
(4067, 428, '_elementor_pro_version', '3.25.4'),
(4068, 428, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4070, 428, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4191, 438, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4073, 429, '_wp_page_template', 'default'),
(4074, 429, '_elementor_edit_mode', 'builder'),
(4075, 429, '_elementor_template_type', 'wp-page'),
(4076, 429, '_elementor_version', '3.34.4'),
(4077, 429, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4078, 429, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4080, 429, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4185, 438, '_wp_page_template', 'default'),
(4186, 438, '_elementor_edit_mode', 'builder'),
(4187, 438, '_elementor_template_type', 'wp-page'),
(4188, 438, '_elementor_version', '3.34.4'),
(4189, 438, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4190, 438, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"0163d33\"},{\"slide_title\":\"Slide #2\",\"_id\":\"3bf53af\"},{\"slide_title\":\"Slide #3\",\"_id\":\"0de6dd6\"},{\"slide_title\":\"Slide #3\",\"_id\":\"ca9455e\"}],\"slides_to_show\":\"4\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[{\"id\":\"405afdf\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"c12ff69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c5b98d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4849e1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"e4bdc1f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #2\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c42fcce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"45dcfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e09ce13\"}],\"pp_display_conditions\":[{\"_id\":\"9fcefdf\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"a23e5e0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"b40eccb\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4115, 433, '_wp_page_template', 'default'),
(4116, 433, '_elementor_edit_mode', 'builder'),
(4117, 433, '_elementor_template_type', 'wp-page'),
(4118, 433, '_elementor_version', '3.34.4'),
(4119, 433, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4120, 433, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"0163d33\"},{\"slide_title\":\"Slide #2\",\"_id\":\"3bf53af\"},{\"slide_title\":\"Slide #3\",\"_id\":\"0de6dd6\"},{\"slide_title\":\"Slide #3\",\"_id\":\"ca9455e\"}],\"slides_to_show\":\"4\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[{\"id\":\"405afdf\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"c12ff69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c5b98d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4849e1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"e4bdc1f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #2\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c42fcce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"45dcfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e09ce13\"}],\"pp_display_conditions\":[{\"_id\":\"9fcefdf\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"a23e5e0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true},{\"id\":\"b40eccb\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a358f7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"89bc1ef\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2673137\"}],\"pp_display_conditions\":[{\"_id\":\"48fd704\"}]},\"elements\":[],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4104, 431, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4181, 437, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4106, 432, '_wp_page_template', 'default'),
(4107, 432, '_elementor_edit_mode', 'builder'),
(4108, 432, '_elementor_template_type', 'wp-page'),
(4109, 432, '_elementor_version', '3.34.4'),
(4110, 432, '_elementor_pro_version', '3.25.4'),
(4111, 432, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58d0d49\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4112608\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dfbd341\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"806aeeb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"877c502\"}],\"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\":\"841a638\",\"elType\":\"widget\",\"settings\":{\"title\":\"About <span style=\\\"font-weight:300;\\\">Us<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c9054e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c712afd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c2b660a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"40a0b68\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b09295\"}],\"pp_display_conditions\":[{\"_id\":\"1e0282a\"}]},\"elements\":[{\"id\":\"bfd5ae8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0b1d317\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a252a6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa21783\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e1130f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"91595ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6de59dc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"pp_display_conditions\":[{\"_id\":\"0017db2\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/BANNER-30.jpg\",\"id\":181,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"7af03d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"7999b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d637a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbc92df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4113, 432, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4122, 433, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4168, 436, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5069, 526, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5073, 527, '_wp_page_template', 'default'),
(5074, 527, '_elementor_edit_mode', 'builder'),
(5075, 527, '_elementor_template_type', 'wp-page'),
(5076, 527, '_elementor_version', '3.34.4'),
(5077, 527, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5078, 527, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F878\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5079, 527, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5119, 531, '_wp_page_template', 'default'),
(5120, 531, '_elementor_edit_mode', 'builder'),
(5121, 531, '_elementor_template_type', 'wp-page'),
(5122, 531, '_elementor_version', '3.34.4'),
(5123, 531, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5124, 531, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5092, 528, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5096, 529, '_wp_page_template', 'default'),
(5097, 529, '_elementor_edit_mode', 'builder'),
(5098, 529, '_elementor_template_type', 'wp-page'),
(5099, 529, '_elementor_version', '3.34.4'),
(5100, 529, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5101, 529, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F878\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5102, 529, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5106, 530, '_wp_page_template', 'default'),
(5107, 530, '_elementor_edit_mode', 'builder'),
(5108, 530, '_elementor_template_type', 'wp-page'),
(5109, 530, '_elementor_version', '3.34.4'),
(5110, 530, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5111, 530, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5112, 530, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5153, 534, '_elementor_edit_mode', 'builder'),
(5154, 534, '_elementor_template_type', 'wp-page'),
(5155, 534, '_elementor_version', '3.34.4'),
(5156, 534, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5157, 534, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_b\":\"#F3EFEF\"},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5125, 531, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5129, 532, '_wp_page_template', 'default'),
(5130, 532, '_elementor_edit_mode', 'builder'),
(5131, 532, '_elementor_template_type', 'wp-page'),
(5132, 532, '_elementor_version', '3.34.4'),
(5133, 532, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5134, 532, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}]},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5135, 532, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5139, 533, '_wp_page_template', 'default'),
(5140, 533, '_elementor_edit_mode', 'builder'),
(5141, 533, '_elementor_template_type', 'wp-page'),
(5142, 533, '_elementor_version', '3.34.4'),
(5143, 533, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5144, 533, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_b\":\"#F3EFEF\"},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5145, 533, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5185, 537, '_wp_page_template', 'default'),
(5186, 537, '_elementor_edit_mode', 'builder'),
(5187, 537, '_elementor_template_type', 'wp-page'),
(5188, 537, '_elementor_version', '3.34.4'),
(5189, 537, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5190, 537, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5158, 534, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5162, 535, '_wp_page_template', 'default'),
(5163, 535, '_elementor_edit_mode', 'builder'),
(5164, 535, '_elementor_template_type', 'wp-page'),
(5165, 535, '_elementor_version', '3.34.4'),
(5166, 535, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5167, 535, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_b\":\"#F3EFEF\"},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5168, 535, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5172, 536, '_wp_page_template', 'default'),
(5173, 536, '_elementor_edit_mode', 'builder'),
(5174, 536, '_elementor_template_type', 'wp-page'),
(5175, 536, '_elementor_version', '3.34.4'),
(5176, 536, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5177, 536, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5178, 536, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5218, 540, '_wp_page_template', 'default'),
(5219, 540, '_elementor_edit_mode', 'builder'),
(5220, 540, '_elementor_template_type', 'wp-page'),
(5221, 540, '_elementor_version', '3.34.4'),
(5222, 540, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5223, 540, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5191, 537, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5195, 538, '_wp_page_template', 'default'),
(5196, 538, '_elementor_edit_mode', 'builder'),
(5197, 538, '_elementor_template_type', 'wp-page'),
(5198, 538, '_elementor_version', '3.34.4'),
(5199, 538, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5200, 538, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\"},\"elements\":[{\"id\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5201, 538, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5205, 539, '_wp_page_template', 'default'),
(5206, 539, '_elementor_edit_mode', 'builder'),
(5207, 539, '_elementor_template_type', 'wp-page'),
(5208, 539, '_elementor_version', '3.34.4'),
(5209, 539, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5210, 539, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5211, 539, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5251, 543, '_wp_page_template', 'default'),
(5252, 543, '_elementor_edit_mode', 'builder'),
(5253, 543, '_elementor_template_type', 'wp-page'),
(5254, 543, '_elementor_version', '3.34.4'),
(5255, 543, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5256, 543, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":87,\"sizes\":[]}},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5581, 573, '_wp_page_template', 'default'),
(5582, 573, '_elementor_edit_mode', 'builder'),
(5583, 573, '_elementor_template_type', 'wp-page'),
(5584, 573, '_elementor_version', '3.34.4'),
(5585, 573, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5586, 573, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5224, 540, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5228, 541, '_wp_page_template', 'default'),
(5229, 541, '_elementor_edit_mode', 'builder'),
(5230, 541, '_elementor_template_type', 'wp-page'),
(5231, 541, '_elementor_version', '3.34.4'),
(5232, 541, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5233, 541, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}]},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5234, 541, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5271, 545, '_wp_page_template', 'default'),
(5238, 542, '_wp_page_template', 'default'),
(5239, 542, '_elementor_edit_mode', 'builder'),
(5240, 542, '_elementor_template_type', 'wp-page'),
(5241, 542, '_elementor_version', '3.34.4'),
(5242, 542, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5243, 542, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":87,\"sizes\":[]}},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5244, 542, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5284, 546, '_wp_page_template', 'default'),
(5285, 546, '_elementor_edit_mode', 'builder'),
(5286, 546, '_elementor_template_type', 'wp-page'),
(5287, 546, '_elementor_version', '3.34.4'),
(5288, 546, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5289, 546, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5350, 552, '_wp_page_template', 'default'),
(5257, 543, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5261, 544, '_wp_page_template', 'default'),
(5262, 544, '_elementor_edit_mode', 'builder'),
(5263, 544, '_elementor_template_type', 'wp-page'),
(5264, 544, '_elementor_version', '3.34.4'),
(5265, 544, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5266, 544, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":87,\"sizes\":[]}},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5267, 544, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5272, 545, '_elementor_edit_mode', 'builder'),
(5273, 545, '_elementor_template_type', 'wp-page'),
(5274, 545, '_elementor_version', '3.34.4'),
(5275, 545, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5276, 545, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5277, 545, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5317, 549, '_wp_page_template', 'default'),
(5318, 549, '_elementor_edit_mode', 'builder'),
(5319, 549, '_elementor_template_type', 'wp-page'),
(5320, 549, '_elementor_version', '3.34.4'),
(5321, 549, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5322, 549, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5290, 546, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5294, 547, '_wp_page_template', 'default'),
(5295, 547, '_elementor_edit_mode', 'builder'),
(5296, 547, '_elementor_template_type', 'wp-page'),
(5297, 547, '_elementor_version', '3.34.4'),
(5298, 547, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5299, 547, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5850942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94b46d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc2110f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"80bb18b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd23cdc\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e9824c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5300, 547, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5304, 548, '_wp_page_template', 'default'),
(5305, 548, '_elementor_edit_mode', 'builder'),
(5306, 548, '_elementor_template_type', 'wp-page'),
(5307, 548, '_elementor_version', '3.34.4'),
(5308, 548, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5309, 548, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5310, 548, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5351, 552, '_elementor_edit_mode', 'builder'),
(5352, 552, '_elementor_template_type', 'wp-page'),
(5353, 552, '_elementor_version', '3.34.4'),
(5354, 552, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5355, 552, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5323, 549, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5327, 550, '_wp_page_template', 'default'),
(5328, 550, '_elementor_edit_mode', 'builder'),
(5329, 550, '_elementor_template_type', 'wp-page'),
(5330, 550, '_elementor_version', '3.34.4'),
(5331, 550, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5332, 550, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5333, 550, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5337, 551, '_wp_page_template', 'default'),
(5338, 551, '_elementor_edit_mode', 'builder'),
(5339, 551, '_elementor_template_type', 'wp-page'),
(5340, 551, '_elementor_version', '3.34.4'),
(5341, 551, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5342, 551, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5343, 551, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5383, 555, '_wp_page_template', 'default'),
(5384, 555, '_elementor_edit_mode', 'builder'),
(5385, 555, '_elementor_template_type', 'wp-page'),
(5386, 555, '_elementor_version', '3.34.4'),
(5387, 555, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5388, 555, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5356, 552, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5360, 553, '_wp_page_template', 'default'),
(5361, 553, '_elementor_edit_mode', 'builder'),
(5362, 553, '_elementor_template_type', 'wp-page'),
(5363, 553, '_elementor_version', '3.34.4'),
(5364, 553, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5365, 553, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5366, 553, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5370, 554, '_wp_page_template', 'default'),
(5371, 554, '_elementor_edit_mode', 'builder'),
(5372, 554, '_elementor_template_type', 'wp-page'),
(5373, 554, '_elementor_version', '3.34.4'),
(5374, 554, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5375, 554, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5376, 554, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5416, 558, '_wp_page_template', 'default'),
(5417, 558, '_elementor_edit_mode', 'builder'),
(5418, 558, '_elementor_template_type', 'wp-page'),
(5419, 558, '_elementor_version', '3.34.4'),
(5420, 558, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5421, 558, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5389, 555, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5393, 556, '_wp_page_template', 'default'),
(5394, 556, '_elementor_edit_mode', 'builder'),
(5395, 556, '_elementor_template_type', 'wp-page'),
(5396, 556, '_elementor_version', '3.34.4'),
(5397, 556, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5398, 556, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5399, 556, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5403, 557, '_wp_page_template', 'default'),
(5404, 557, '_elementor_edit_mode', 'builder'),
(5405, 557, '_elementor_template_type', 'wp-page'),
(5406, 557, '_elementor_version', '3.34.4'),
(5407, 557, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5408, 557, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5409, 557, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5449, 561, '_wp_page_template', 'default'),
(5450, 561, '_elementor_edit_mode', 'builder'),
(5451, 561, '_elementor_template_type', 'wp-page'),
(5452, 561, '_elementor_version', '3.34.4'),
(5453, 561, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5454, 561, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5422, 558, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5426, 559, '_wp_page_template', 'default'),
(5427, 559, '_elementor_edit_mode', 'builder'),
(5428, 559, '_elementor_template_type', 'wp-page'),
(5429, 559, '_elementor_version', '3.34.4'),
(5430, 559, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5431, 559, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5432, 559, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5436, 560, '_wp_page_template', 'default'),
(5437, 560, '_elementor_edit_mode', 'builder'),
(5438, 560, '_elementor_template_type', 'wp-page'),
(5439, 560, '_elementor_version', '3.34.4'),
(5440, 560, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5441, 560, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5442, 560, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5482, 564, '_wp_page_template', 'default'),
(5483, 564, '_elementor_edit_mode', 'builder'),
(5484, 564, '_elementor_template_type', 'wp-page'),
(5485, 564, '_elementor_version', '3.34.4'),
(5486, 564, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5487, 564, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5455, 561, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5459, 562, '_wp_page_template', 'default'),
(5460, 562, '_elementor_edit_mode', 'builder'),
(5461, 562, '_elementor_template_type', 'wp-page'),
(5462, 562, '_elementor_version', '3.34.4'),
(5463, 562, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5464, 562, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5465, 562, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5502, 566, '_wp_page_template', 'default'),
(5469, 563, '_wp_page_template', 'default'),
(5470, 563, '_elementor_edit_mode', 'builder'),
(5471, 563, '_elementor_template_type', 'wp-page'),
(5472, 563, '_elementor_version', '3.34.4'),
(5473, 563, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5474, 563, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5475, 563, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5515, 567, '_wp_page_template', 'default'),
(5516, 567, '_elementor_edit_mode', 'builder'),
(5517, 567, '_elementor_template_type', 'wp-page'),
(5518, 567, '_elementor_version', '3.34.4'),
(5519, 567, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5520, 567, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5488, 564, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5492, 565, '_wp_page_template', 'default'),
(5493, 565, '_elementor_edit_mode', 'builder'),
(5494, 565, '_elementor_template_type', 'wp-page'),
(5495, 565, '_elementor_version', '3.34.4'),
(5496, 565, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5497, 565, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5498, 565, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5503, 566, '_elementor_edit_mode', 'builder'),
(5504, 566, '_elementor_template_type', 'wp-page'),
(5505, 566, '_elementor_version', '3.34.4'),
(5506, 566, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5507, 566, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5508, 566, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5548, 570, '_wp_page_template', 'default'),
(5549, 570, '_elementor_edit_mode', 'builder'),
(5550, 570, '_elementor_template_type', 'wp-page'),
(5551, 570, '_elementor_version', '3.34.4'),
(5552, 570, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5553, 570, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5521, 567, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5525, 568, '_wp_page_template', 'default'),
(5526, 568, '_elementor_edit_mode', 'builder'),
(5527, 568, '_elementor_template_type', 'wp-page'),
(5528, 568, '_elementor_version', '3.34.4'),
(5529, 568, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5530, 568, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"98d88ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"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\":\"8be64a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c71b59a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"07d85ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"99258ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"95f731f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b0d7f28\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"0318e7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c882c36\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e708e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d513f86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4388214\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b5fefc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5531, 568, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5535, 569, '_wp_page_template', 'default'),
(5536, 569, '_elementor_edit_mode', 'builder'),
(5537, 569, '_elementor_template_type', 'wp-page'),
(5538, 569, '_elementor_version', '3.34.4'),
(5539, 569, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5540, 569, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5541, 569, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5554, 570, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5558, 571, '_wp_page_template', 'default'),
(5559, 571, '_elementor_edit_mode', 'builder'),
(5560, 571, '_elementor_template_type', 'wp-page'),
(5561, 571, '_elementor_version', '3.34.4'),
(5562, 571, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5563, 571, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5564, 571, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5568, 572, '_wp_page_template', 'default'),
(5569, 572, '_elementor_edit_mode', 'builder'),
(5570, 572, '_elementor_template_type', 'wp-page'),
(5571, 572, '_elementor_version', '3.34.4'),
(5572, 572, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5573, 572, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5574, 572, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5614, 576, '_wp_page_template', 'default'),
(5615, 576, '_elementor_edit_mode', 'builder'),
(5616, 576, '_elementor_template_type', 'wp-page'),
(5617, 576, '_elementor_version', '3.34.4'),
(5618, 576, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5619, 576, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5587, 573, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5591, 574, '_wp_page_template', 'default'),
(5592, 574, '_elementor_edit_mode', 'builder'),
(5593, 574, '_elementor_template_type', 'wp-page'),
(5594, 574, '_elementor_version', '3.34.4'),
(5595, 574, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5596, 574, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5597, 574, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5601, 575, '_wp_page_template', 'default'),
(5602, 575, '_elementor_edit_mode', 'builder'),
(5603, 575, '_elementor_template_type', 'wp-page'),
(5604, 575, '_elementor_version', '3.34.4'),
(5605, 575, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5606, 575, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5607, 575, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5647, 579, '_wp_page_template', 'default'),
(5648, 579, '_elementor_edit_mode', 'builder'),
(5649, 579, '_elementor_template_type', 'wp-page'),
(5650, 579, '_elementor_version', '3.34.4'),
(5651, 579, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5652, 579, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5620, 576, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5624, 577, '_wp_page_template', 'default'),
(5625, 577, '_elementor_edit_mode', 'builder'),
(5626, 577, '_elementor_template_type', 'wp-page'),
(5627, 577, '_elementor_version', '3.34.4'),
(5628, 577, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5629, 577, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5630, 577, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5634, 578, '_wp_page_template', 'default'),
(5635, 578, '_elementor_edit_mode', 'builder'),
(5636, 578, '_elementor_template_type', 'wp-page'),
(5637, 578, '_elementor_version', '3.34.4'),
(5638, 578, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5639, 578, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5640, 578, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5685, 582, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5653, 579, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5657, 580, '_wp_page_template', 'default'),
(5658, 580, '_elementor_edit_mode', 'builder'),
(5659, 580, '_elementor_template_type', 'wp-page'),
(5660, 580, '_elementor_version', '3.34.4'),
(5661, 580, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5662, 580, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b820d9e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"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__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"66fcd54\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}]},\"elements\":[{\"id\":\"9ea7586\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49e1080\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fa9c1e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec13da9\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0017db2\"}],\"__globals__\":{\"border_color\":\"\",\"background_color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":26,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"border_color\":\"#55461844\"},\"elements\":[{\"id\":\"2e247e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb58498\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52fc90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5663, 580, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5667, 581, '_wp_page_template', 'default'),
(5668, 581, '_elementor_edit_mode', 'builder'),
(5669, 581, '_elementor_template_type', 'wp-page'),
(5670, 581, '_elementor_version', '3.34.4'),
(5671, 581, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5672, 581, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5673, 581, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5713, 585, '_wp_page_template', 'default'),
(5714, 585, '_elementor_edit_mode', 'builder'),
(5715, 585, '_elementor_template_type', 'wp-page'),
(5716, 585, '_elementor_version', '3.34.4'),
(5717, 585, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5718, 585, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5686, 582, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5690, 583, '_wp_page_template', 'default'),
(5691, 583, '_elementor_edit_mode', 'builder'),
(5692, 583, '_elementor_template_type', 'wp-page'),
(5693, 583, '_elementor_version', '3.34.4'),
(5694, 583, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5695, 583, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#FEFBFC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5696, 583, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5700, 584, '_wp_page_template', 'default'),
(5701, 584, '_elementor_edit_mode', 'builder'),
(5702, 584, '_elementor_template_type', 'wp-page'),
(5703, 584, '_elementor_version', '3.34.4'),
(5704, 584, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5705, 584, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5706, 584, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5746, 588, '_wp_page_template', 'default'),
(5747, 588, '_elementor_edit_mode', 'builder'),
(5748, 588, '_elementor_template_type', 'wp-page'),
(5749, 588, '_elementor_version', '3.34.4'),
(5750, 588, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5751, 588, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED8F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5719, 585, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5723, 586, '_wp_page_template', 'default'),
(5724, 586, '_elementor_edit_mode', 'builder'),
(5725, 586, '_elementor_template_type', 'wp-page'),
(5726, 586, '_elementor_version', '3.34.4'),
(5727, 586, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5728, 586, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5729, 586, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5733, 587, '_wp_page_template', 'default'),
(5734, 587, '_elementor_edit_mode', 'builder'),
(5735, 587, '_elementor_template_type', 'wp-page'),
(5736, 587, '_elementor_version', '3.34.4'),
(5737, 587, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5738, 587, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED8F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5739, 587, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5779, 591, '_wp_page_template', 'default'),
(5780, 591, '_elementor_edit_mode', 'builder'),
(5781, 591, '_elementor_template_type', 'wp-page'),
(5782, 591, '_elementor_version', '3.34.4'),
(5783, 591, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5784, 591, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED42\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5752, 588, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5756, 589, '_wp_page_template', 'default'),
(5757, 589, '_elementor_edit_mode', 'builder'),
(5758, 589, '_elementor_template_type', 'wp-page'),
(5759, 589, '_elementor_version', '3.34.4'),
(5760, 589, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5761, 589, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED8F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5762, 589, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5766, 590, '_wp_page_template', 'default'),
(5767, 590, '_elementor_edit_mode', 'builder'),
(5768, 590, '_elementor_template_type', 'wp-page'),
(5769, 590, '_elementor_version', '3.34.4'),
(5770, 590, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5771, 590, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED42\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5772, 590, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5812, 594, '_wp_page_template', 'default'),
(5813, 594, '_elementor_edit_mode', 'builder'),
(5814, 594, '_elementor_template_type', 'wp-page'),
(5815, 594, '_elementor_version', '3.34.4'),
(5816, 594, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5817, 594, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5785, 591, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5789, 592, '_wp_page_template', 'default'),
(5790, 592, '_elementor_edit_mode', 'builder'),
(5791, 592, '_elementor_template_type', 'wp-page'),
(5792, 592, '_elementor_version', '3.34.4'),
(5793, 592, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5794, 592, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED42\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5795, 592, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5799, 593, '_wp_page_template', 'default'),
(5800, 593, '_elementor_edit_mode', 'builder'),
(5801, 593, '_elementor_template_type', 'wp-page'),
(5802, 593, '_elementor_version', '3.34.4'),
(5803, 593, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5804, 593, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5805, 593, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5917, 606, '_wp_page_template', 'default'),
(5918, 606, '_elementor_edit_mode', 'builder'),
(5919, 606, '_elementor_template_type', 'wp-page'),
(5920, 606, '_elementor_version', '3.34.4'),
(5921, 606, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5922, 606, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5818, 594, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5822, 595, '_wp_page_template', 'default'),
(5823, 595, '_elementor_edit_mode', 'builder'),
(5824, 595, '_elementor_template_type', 'wp-page'),
(5825, 595, '_elementor_version', '3.34.4'),
(5826, 595, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5827, 595, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5828, 595, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5832, 596, '_wp_page_template', 'default'),
(5833, 596, '_elementor_edit_mode', 'builder'),
(5834, 596, '_elementor_template_type', 'wp-page'),
(5835, 596, '_elementor_version', '3.34.4'),
(5836, 596, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5837, 596, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5838, 596, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5947, 14, '_elementor_controls_usage', 'a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:19;s:11:\"header_size\";i:15;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:17;s:21:\"typography_typography\";i:17;s:25:\"typography_text_transform\";i:6;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:19;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:13;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:15;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:11;s:8:\"_padding\";i:11;s:21:\"_offset_orientation_v\";i:11;s:13:\"_offset_y_end\";i:11;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:15;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:9;s:4:\"link\";i:9;s:13:\"selected_icon\";i:4;s:10:\"icon_align\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:7;s:12:\"align_tablet\";i:2;s:21:\"typography_typography\";i:6;s:25:\"typography_text_transform\";i:2;s:16:\"background_color\";i:4;s:12:\"text_padding\";i:4;s:26:\"typography_text_decoration\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:23;s:5:\"width\";i:15;s:14:\"flex_direction\";i:24;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:4;s:8:\"flex_gap\";i:7;s:9:\"flex_wrap\";i:2;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:45;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:27;s:16:\"background_color\";i:21;s:28:\"background_slideshow_gallery\";i:2;s:36:\"background_slideshow_background_size\";i:2;s:40:\"background_slideshow_background_position\";i:2;s:30:\"background_slideshow_ken_burns\";i:2;s:21:\"background_color_stop\";i:4;s:18:\"background_color_b\";i:5;s:23:\"background_color_b_stop\";i:2;}s:26:\"section_background_overlay\";a:11:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:25:\"background_overlay_repeat\";i:2;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:4;s:26:\"background_overlay_color_b\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:18;s:13:\"border_border\";i:10;s:12:\"border_width\";i:10;s:12:\"border_color\";i:11;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:45;}s:14:\"section_layout\";a:3:{s:6:\"margin\";i:11;s:7:\"padding\";i:37;s:7:\"z_index\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:19;s:18:\"animation_duration\";i:19;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:5;s:12:\"hide_desktop\";i:5;s:17:\"hide_tablet_extra\";i:5;s:11:\"hide_tablet\";i:5;s:17:\"hide_mobile_extra\";i:5;s:11:\"hide_mobile\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:19;s:10:\"image_size\";i:19;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:19;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:19;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:4;s:11:\"hide_mobile\";i:4;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:12;s:10:\"title_text\";i:12;s:16:\"description_text\";i:12;s:10:\"title_size\";i:12;s:4:\"view\";i:10;s:4:\"link\";i:6;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:5:{s:8:\"position\";i:8;s:18:\"title_bottom_space\";i:12;s:15:\"position_mobile\";i:8;s:10:\"icon_space\";i:4;s:26:\"content_vertical_alignment\";i:6;}s:18:\"section_style_icon\";a:4:{s:9:\"icon_size\";i:10;s:12:\"icon_padding\";i:10;s:13:\"primary_color\";i:3;s:15:\"secondary_color\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:14:\"_border_radius\";i:2;}}}}s:15:\"nested-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"section_slides\";a:3:{s:14:\"carousel_items\";i:2;s:14:\"slides_to_show\";i:2;s:27:\"slides_to_show_mobile_extra\";i:2;}s:25:\"section_carousel_settings\";a:2:{s:12:\"offset_sides\";i:2;s:12:\"offset_width\";i:2;}s:27:\"section_carousel_pagination\";a:1:{s:10:\"pagination\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:1:{s:20:\"image_spacing_custom\";i:2;}s:25:\"section_design_navigation\";a:4:{s:35:\"arrows_normal_background_background\";i:2;s:20:\"arrows_border_radius\";i:2;s:14:\"arrows_padding\";i:2;s:15:\"arrows_position\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:2;s:11:\"button_text\";i:2;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:2;s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:14:\"email_reply_to\";i:2;s:13:\"form_metadata\";i:2;}s:15:\"section_email_2\";a:1:{s:15:\"email_subject_2\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:2;s:7:\"row_gap\";i:2;s:13:\"label_spacing\";i:2;s:27:\"label_typography_typography\";i:2;s:26:\"label_typography_font_size\";i:2;s:28:\"label_typography_font_weight\";i:2;}s:19:\"section_field_style\";a:2:{s:27:\"field_typography_typography\";i:2;s:18:\"field_border_color\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}}'),
(5845, 597, '_wp_attached_file', '2026/02/4D7E3506-FB8B-4CFD-AE33-A08803D19BCA.png'),
(5846, 597, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:4:\"file\";s:48:\"2026/02/4D7E3506-FB8B-4CFD-AE33-A08803D19BCA.png\";s:8:\"filesize\";i:1662470;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"4D7E3506-FB8B-4CFD-AE33-A08803D19BCA-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70710;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"4D7E3506-FB8B-4CFD-AE33-A08803D19BCA-683x1024.png\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:670563;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"4D7E3506-FB8B-4CFD-AE33-A08803D19BCA-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"4D7E3506-FB8B-4CFD-AE33-A08803D19BCA-768x1152.png\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:827430;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5876, 601, '_wp_page_template', 'elementor_header_footer'),
(5878, 601, '_elementor_edit_mode', 'builder'),
(5879, 601, '_elementor_template_type', 'wp-page'),
(5880, 601, '_elementor_version', '3.34.4'),
(5881, 601, '_elementor_pro_version', '3.34.4'),
(5882, 601, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"},{\"title\":\"Yermina Dumas Nico\",\"subtitle\":\"\",\"description\":\"<p>Phlebotomist<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"85466fa\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5865, 599, '_elementor_page_settings', 'a:0:{}'),
(5867, 600, '_wp_page_template', 'elementor_header_footer'),
(5869, 600, '_elementor_edit_mode', 'builder'),
(5870, 600, '_elementor_template_type', 'wp-page'),
(5871, 600, '_elementor_version', '3.34.4'),
(5872, 600, '_elementor_pro_version', '3.34.4'),
(5873, 600, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5874, 600, '_elementor_page_settings', 'a:0:{}'),
(5898, 604, '_elementor_edit_mode', 'builder'),
(5899, 604, '_elementor_template_type', 'wp-page'),
(5900, 604, '_elementor_version', '3.34.4'),
(5901, 604, '_elementor_pro_version', '3.34.4'),
(5902, 604, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"},{\"title\":\"Yermina Dumas Nico\",\"subtitle\":\"\",\"description\":\"<p>Phlebotomist<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"85466fa\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5903, 604, '_elementor_page_settings', 'a:0:{}'),
(5906, 605, '_elementor_edit_mode', 'builder'),
(5907, 605, '_elementor_template_type', 'wp-page'),
(5908, 605, '_elementor_version', '3.34.4'),
(5909, 605, '_elementor_pro_version', '3.34.4'),
(5910, 605, '_elementor_data', '[{\"id\":\"439b7b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c6b1716\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c1a24e8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"140b64c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"646ffa6\"}]},\"elements\":[{\"id\":\"788c3ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24efde7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6614857\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b8ef72f\"}],\"pp_display_conditions\":[{\"_id\":\"d516ebd\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"66022b4\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Naidelmi Gonzalez Ferrer\",\"_id\":\"97b24bd\",\"subtitle\":\"\",\"description\":\"<p>Office Manager<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team-1.jpg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\"},{\"title\":\"Ana Iris Carmona Valdes\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"cfcf61a\"},{\"title\":\"Roman Mart\\u00ednez Faife\",\"subtitle\":\"\",\"description\":\"<p>Medical Assistant<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife.jpg\",\"id\":448,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"b9212b7\"},{\"title\":\"Irma Maria Valdes Sepulveda\",\"subtitle\":\"\",\"description\":\"<p>President<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"f3cec62\"},{\"title\":\"Rebeca BARRABEITG POZO\",\"subtitle\":\"\",\"description\":\"<p>APRN<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"c4f4f51\"},{\"title\":\"Yermina Dumas Nico\",\"subtitle\":\"\",\"description\":\"<p>Phlebotomist<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Untitled-5871.jpg\",\"id\":602,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"button_text\":\"Get Started\",\"_id\":\"85466fa\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h6\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#A9ACAF5C\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"icon_img_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e9f5da4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5911, 34, '_elementor_page_settings', 'a:0:{}'),
(5912, 34, '_elementor_controls_usage', 'a:2:{s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:4:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:6:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:21:\"info_box_border_color\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}s:27:\"section_info_box_icon_style\";a:3:{s:18:\"icon_border_radius\";i:1;s:11:\"icon_margin\";i:1;s:14:\"icon_img_width\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(5915, 86, '_elementor_screenshot_failed', '2026-02-02 18:54:35'),
(5916, 307, '_elementor_screenshot_failed', '2026-02-02 18:54:53'),
(5923, 606, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5927, 607, '_wp_page_template', 'default'),
(5928, 607, '_elementor_edit_mode', 'builder'),
(5929, 607, '_elementor_template_type', 'wp-page'),
(5930, 607, '_elementor_version', '3.34.4'),
(5931, 607, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5932, 607, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5933, 607, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5937, 608, '_wp_page_template', 'default'),
(5938, 608, '_elementor_edit_mode', 'builder'),
(5939, 608, '_elementor_template_type', 'wp-page'),
(5940, 608, '_elementor_version', '3.34.4'),
(5941, 608, '_elementor_pro_version', '3.34.4');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5942, 608, '_elementor_data', '[{\"id\":\"d5cb24f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":108,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"background_overlay_color\":\"#F7F4F4\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"92b9f37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FCF9F894\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9866caa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1380b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7892d04\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd480eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"64a5a0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4535cd1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13ec31b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4427cce\"}],\"pp_display_conditions\":[{\"_id\":\"d55a04c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":99,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-12.jpg\"},{\"id\":66,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/banner-44.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":35,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"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\":\"2cf1043\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8cef7b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fb73826\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57708db\"}],\"pp_display_conditions\":[{\"_id\":\"9731fd6\"}],\"width\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFFAD\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.07,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"85\",\"bottom\":\"95\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"50\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7700e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"6697f88\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e9f82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Royal Health Medical  <span style=\\\"font-weight:300;\\\">Center<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"617dc3d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_text_transform\":\"uppercase\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40d10b0\",\"elType\":\"widget\",\"settings\":{\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"fc3401b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"editor\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c7b58f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"9d38b93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7d8a0532\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"background_background\":\"gradient\",\"background_color\":\"#FDFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"2115898b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2bb0df3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4076a793\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ddbfe3f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c8595b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2982964c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"312d23d0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6f67968a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"512457cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c776c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7d7a91db\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d7a9763\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"700ca81\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0a9b836\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29d214a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e3dbcd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"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\":\"8516e29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"00f1547\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe3a8f1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0612eff\"}],\"pp_display_conditions\":[{\"_id\":\"304ba59\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d2c3b6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a02c37a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":283,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/about-9.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"33d7288\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76f729a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"01b3ac0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1119579\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"36d9644\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-39\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3d698e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2dd87c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":284,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/services-2-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d4c78f1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e9d8c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":285,\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Primary-Care.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4066d43\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c5ac3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9832c41\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"52ec42d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"546e773\"}],\"pp_display_conditions\":[{\"_id\":\"1a1d9e3\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a86641b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comprehensive Care Under   <span style=\\\"font-weight:300;\\\">One Roof<\\/span>\",\"align\":\"start\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a00a8dd\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91614ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence\\u2014every step of the way.\",\"pp_display_conditions\":[{\"_id\":\"1ff1eb1\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b356099\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/diagnosis_4625898.svg\",\"id\":300},\"library\":\"svg\"},\"title_text\":\"Schedule an Appointment\",\"description_text\":\"Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.\",\"title_size\":\"h6\",\"position\":\"inline-start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3177681\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9e3092f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us today\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f343040\",\"pp_condition_date_time_before_value\":\"2026-02-04 10:00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"86095f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFC20408\",\"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\":\"101f975\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"68bd42f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6befe5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"234d778\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4fff15a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"822e28d\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3dd170\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FEFBFC\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"50b327c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7328101\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0f5e20d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e532a5\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f710bb6\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"z_index\":1},\"elements\":[{\"id\":\"b5fcb19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/New-Project-28.jpg\",\"id\":503,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ac58df3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4257848\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":14,\"column\":\"14\",\"row\":\"14\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fd7549b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9455245\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6d64b25\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"204\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"09b2766\"}],\"flex_wrap\":\"wrap\",\"background_background\":\"gradient\",\"background_color\":\"#F7F3F4\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"b11bda8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6c7220a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/donor_17288347.svg\",\"id\":218},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"IV Therapy Services\",\"description_text\":\"At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. \",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"dfaa7f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/iv-therapy-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b73b5b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a8c02d5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/relaxation_247460.svg\",\"id\":217},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Lymphatic Massage Services\",\"description_text\":\"At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"84a08f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/lymphatic-massage-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e8ec341\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"a2260e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/medical_14528474.svg\",\"id\":227},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Family Medicine\",\"description_text\":\"At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c2bc0c1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/family-medicine\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6da483f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d847cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/spa_8953891.svg\",\"id\":220},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Wellness & Beauty Services\",\"description_text\":\"We believe feeling your best goes hand in hand with looking your best. Our Wellness\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2747c08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6ce9173\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"row-reverse\",\"align\":\"center\",\"background_color\":\"#02010100\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a326af2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wellness-beauty-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"936adfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba83f02\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef17dad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ae886ed\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"07f80f7\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#A9ACAF5C\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d85750a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c3d0784\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f593c97\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FDFBFB\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b\":\"#F3EFEFB8\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]}},\"elements\":[{\"id\":\"a741917\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e087215\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"},{\"slide_title\":\"Slide #1\",\"_id\":\"56a77e0\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"5ce0e3b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"08d114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b5a9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"125591a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"f906d91\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"f698231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"01e36a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f5e5f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"8eb868b\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"218b066\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e07b846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4195f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"73dca1a\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"1d4ed19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7dfc51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"559a100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"06adcf9\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"05e1a2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ed354e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07c4cc3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"18cb9d6\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#E6E0E085\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#E6E0E085\"},\"elements\":[{\"id\":\"7c20120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Untitled-5871.jpg\",\"id\":602,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"53310bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Yermina Dumas Nico\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139689d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phlebotomist<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1a9919\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24634ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1e40376\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eaaed01\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b2eefc0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"41bcaa2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5e5b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9b22b27\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ceae7fa\"}],\"pp_display_conditions\":[{\"_id\":\"e316e05\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87484f9\",\"elType\":\"widget\",\"widgetType\":\"nested-carousel\",\"settings\":{\"carousel_items\":[{\"slide_title\":\"Slide #1\",\"_id\":\"413eddb\"},{\"slide_title\":\"Slide #1\",\"_id\":\"faa201e\"},{\"slide_title\":\"Slide #1\",\"_id\":\"3eb64b1\"},{\"slide_title\":\"Slide #1\",\"_id\":\"e4005f0\"},{\"slide_title\":\"Slide #1\",\"_id\":\"4f08a6b\"}],\"slides_to_show\":\"4\",\"slides_to_show_mobile_extra\":\"1\",\"offset_sides\":\"right\",\"offset_width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"pagination\":\"\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"arrows_normal_background_background\":\"classic\",\"arrows_border_radius\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"55\",\"bottom\":\"55\",\"left\":\"55\",\"isLinked\":true},\"arrows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"arrows_position\":\"outside\",\"pp_display_conditions\":[{\"_id\":\"08f3059\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"arrows_normal_background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"carousel_name\":\"Carousel\"},\"elements\":[{\"id\":\"0e61327\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"4ee6684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Team.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a93daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naidelmi Gonzalez Ferrer\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a58b5b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Office Manager\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"797321f\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"ba3a37d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Ana-Iris-Carmona-Valdes.jpg\",\"id\":446,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b46a05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ana Iris Carmona Valdes\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00be906\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"32cff8c\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"5a71f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Roman-Martinez-Faife-1.jpg\",\"id\":490,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1d846\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roman Mart\\u00ednez Faife\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aed96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Medical Assistant\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"15be2a0\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"65014bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Irma-Maria-Valdes-Sepulveda-1.jpg\",\"id\":453,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd71551\",\"elType\":\"widget\",\"settings\":{\"title\":\"Irma Maria Valdes Sepulveda\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f267090\",\"elType\":\"widget\",\"settings\":{\"editor\":\"President\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true},{\"id\":\"7cb75cc\",\"elType\":\"container\",\"settings\":{\"_title\":\"Slide #1\",\"background_background\":\"classic\",\"background_color\":\"#55461844\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9201012\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1a5bcd9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c9feaa\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"98ee1b3\"}]},\"elements\":[{\"id\":\"58eaf07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/royalhealth\\/wp-content\\/uploads\\/2026\\/02\\/Rebeca-Barrabeitg-Pozo.jpg\",\"id\":460,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"c0058d7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1acc078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rebeca Barrabeitg Pozo\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1fc479b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"660d4b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"APRN\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"327ac62\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true,\"isLocked\":true}]}],\"isInner\":true}],\"isInner\":false},{\"id\":\"508025b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"gradient\",\"background_color\":\"#EEECED69\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"background_color_b\":\"#F7F3F4\"},\"elements\":[{\"id\":\"64db12a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#FCF9F8D9\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.02)\"}},\"elements\":[{\"id\":\"91a5030\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91548\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c728732\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2208d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"\",\"description_color\":\"\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"primary_color\":\"#ffc204\",\"secondary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"54bb330\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1a4967e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e4adc00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#FFC20408\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8325df7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5abb2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"169b892\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d03cc8b\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_wrap_mobile_extra\":\"wrap\",\"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\":\"1f7080b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1d222ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73e9fa7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0ee9bca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c51698\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"be0e7cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"5aab60a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d2b02a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-periscope\",\"library\":\"fa-brands\"},\"view\":\"stacked\",\"title_text\":\"Address\",\"description_text\":\"3383 NW 7th ST Suite 305 & 306 Miami FL 33125\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=25.779384,-80.250645&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"bc91997\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(786) 238-7785\",\"link\":{\"url\":\"tel:7862387785\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"122149d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Fax\",\"description_text\":\"(786) 238-7743\",\"link\":{\"url\":\"fax:7862387743\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"609eac0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"content_vertical_alignment_mobile_extra\":\"top\",\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"42c073d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"35b8e78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"13bda6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"92344ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"59baaec\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b34c5ef\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"81434a6\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"25b6c08\"},{\"custom_id\":\"field_ea00717\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"ea00717\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"fe93d6c\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"info@royalhealth.com\",\"email_subject\":\"Contact Us - Royal Health\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Royal Health\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Royal Health&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Royal Health\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_font_weight\":\"300\",\"field_typography_typography\":\"custom\",\"field_border_color\":\"#A9ACAF5C\",\"pp_display_conditions\":[{\"_id\":\"e992ba2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpr_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5943, 608, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}');

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

--
-- Table structure for table `wpr_posts`
--

CREATE TABLE `wpr_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 `wpr_posts`
--

INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2026-02-01 06:27:35', '2026-02-01 06:27:35', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2026-02-01 06:27:35', '2026-02-01 06:27:35', '', 0, 'https://mrarif.me/royalhealth/?p=1', 0, 'post', '', 1),
(2, 1, '2026-02-01 06:27:35', '2026-02-01 06:27:35', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/royalhealth/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2026-02-01 06:27:35', '2026-02-01 06:27:35', '', 0, 'https://mrarif.me/royalhealth/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-02-01 06:27:35', '2026-02-01 06:27:35', '<!-- 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/royalhealth.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2026-02-01 06:27:35', '2026-02-01 06:27:35', '', 0, 'https://mrarif.me/royalhealth/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-02-01 06:27:35', '2026-02-01 06:27:35', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-02-01 06:27:35', '2026-02-01 06:27:35', '', 0, 'https://mrarif.me/royalhealth/index.php/2026/02/01/navigation/', 0, 'wp_navigation', '', 0),
(5, 1, '2026-02-01 06:27:44', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2026-02-01 06:27:44', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/royalhealth/?p=5', 0, 'post', '', 0),
(6, 1, '2026-02-01 06:28:19', '2026-02-01 06:28:19', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-02-01 07:03:57', '2026-02-01 07:03:57', '', 0, 'https://mrarif.me/royalhealth/?p=6', 0, 'elementor_library', '', 0),
(137, 1, '2026-02-01 08:31:04', '2026-02-01 08:31:04', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:31:04', '2026-02-01 08:31:04', '', 86, 'https://mrarif.me/royalhealth/?p=137', 0, 'revision', '', 0),
(138, 1, '2026-02-01 08:31:40', '2026-02-01 08:31:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:31:40', '2026-02-01 08:31:40', '', 14, 'https://mrarif.me/royalhealth/?p=138', 0, 'revision', '', 0),
(142, 1, '2026-02-01 08:34:30', '2026-02-01 08:34:30', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:34:30', '2026-02-01 08:34:30', '', 86, 'https://mrarif.me/royalhealth/?p=142', 0, 'revision', '', 0),
(154, 1, '2026-02-01 08:43:57', '2026-02-01 08:43:57', '', 'banner (4)', '', 'inherit', 'open', 'closed', '', 'banner-4', '', '', '2026-02-01 08:43:57', '2026-02-01 08:43:57', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/banner-4.jpeg', 0, 'attachment', 'image/jpeg', 0),
(155, 1, '2026-02-01 08:44:08', '2026-02-01 08:44:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:44:08', '2026-02-01 08:44:08', '', 14, 'https://mrarif.me/royalhealth/?p=155', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(14, 1, '2026-02-01 06:57:57', '2026-02-01 06:57:57', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n															<img width=\"700\" height=\"700\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg 700w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-150x150.jpg 150w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n					<h6>Yermina Dumas Nico</h6>				\n									<p>Phlebotomist</p>								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"700\" height=\"700\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg 700w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-150x150.jpg 150w\" sizes=\"(max-width: 700px) 100vw, 700px\" />																<h6>Yermina Dumas Nico</h6>		<p>Phlebotomist</p>					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-02-02 18:55:17', '2026-02-02 18:55:17', '', 0, 'https://mrarif.me/royalhealth/?page_id=14', 0, 'page', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(15, 1, '2026-02-01 06:57:57', '2026-02-01 06:57:57', '', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 06:57:57', '2026-02-01 06:57:57', '', 14, 'https://mrarif.me/royalhealth/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-02-01 06:58:36', '2026-02-01 06:58:36', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-01 06:58:36', '2026-02-01 06:58:36', '', 6, 'https://mrarif.me/royalhealth/?p=16', 0, 'revision', '', 0),
(22, 1, '2026-02-01 07:05:26', '2026-02-01 07:05:26', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:05:26', '2026-02-01 07:05:26', '', 14, 'https://mrarif.me/royalhealth/?p=22', 0, 'revision', '', 0),
(18, 1, '2026-02-01 07:03:19', '2026-02-01 07:03:19', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-01 07:03:19', '2026-02-01 07:03:19', '', 6, 'https://mrarif.me/royalhealth/?p=18', 0, 'revision', '', 0),
(19, 1, '2026-02-01 07:03:19', '2026-02-01 07:03:19', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-01 07:03:19', '2026-02-01 07:03:19', '', 6, 'https://mrarif.me/royalhealth/?p=19', 0, 'revision', '', 0),
(20, 1, '2026-02-01 07:05:25', '2026-02-01 07:05:25', '', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:05:25', '2026-02-01 07:05:25', '', 14, 'https://mrarif.me/royalhealth/?p=20', 0, 'revision', '', 0),
(21, 1, '2026-02-01 07:05:25', '2026-02-01 07:05:25', '', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:05:25', '2026-02-01 07:05:25', '', 14, 'https://mrarif.me/royalhealth/?p=21', 0, 'revision', '', 0),
(23, 1, '2026-02-01 07:08:54', '2026-02-01 07:08:54', '{\n    \"astra-settings[font-family-h1]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:12\"\n    },\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 61,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:12\"\n    },\n    \"astra-settings[font-family-h2]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:12\"\n    },\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 41,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:12\"\n    },\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Rubik\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:54\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"300,600,900\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:54\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": 33,\n            \"tablet\": 20,\n            \"mobile\": 20,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:54\"\n    },\n    \"astra-settings[font-size-h4]\": {\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-02-01 07:08:54\"\n    },\n    \"astra-settings[font-size-h5]\": {\n        \"value\": {\n            \"desktop\": 25,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:54\"\n    },\n    \"astra-settings[font-size-h6]\": {\n        \"value\": {\n            \"desktop\": 21,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:08:54\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '9fff1159-ad5b-4349-a699-0ee66dce56af', '', '', '2026-02-01 07:08:54', '2026-02-01 07:08:54', '', 0, 'https://mrarif.me/royalhealth/?p=23', 0, 'customize_changeset', '', 0),
(24, 1, '2026-02-01 07:09:08', '2026-02-01 07:09:08', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:09:08', '2026-02-01 07:09:08', '', 14, 'https://mrarif.me/royalhealth/?p=24', 0, 'revision', '', 0),
(25, 1, '2026-02-01 07:09:08', '2026-02-01 07:09:08', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:09:08', '2026-02-01 07:09:08', '', 14, 'https://mrarif.me/royalhealth/?p=25', 0, 'revision', '', 0),
(26, 1, '2026-02-01 07:09:08', '2026-02-01 07:09:08', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:09:08', '2026-02-01 07:09:08', '', 14, 'https://mrarif.me/royalhealth/?p=26', 0, 'revision', '', 0),
(27, 1, '2026-02-01 07:10:30', '2026-02-01 07:10:30', '{\n    \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-5)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:10:25\"\n    },\n    \"astra-settings[content-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:10:25\"\n    },\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'AR One Sans\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:10:30\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:10:25\"\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-02-01 07:10:25\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '0b2fa481-ff1c-4f5c-8b28-17b43cf5816e', '', '', '2026-02-01 07:10:30', '2026-02-01 07:10:30', '', 0, 'https://mrarif.me/royalhealth/?p=27', 0, 'customize_changeset', '', 0),
(28, 1, '2026-02-01 07:11:32', '2026-02-01 07:11:32', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#c46101\",\n                \"#045cb4\",\n                \"#1e293b\",\n                \"#334155\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:11:32\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#c46101\",\n                    \"#045cb4\",\n                    \"#1e293b\",\n                    \"#334155\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:11:32\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'fe5ceefa-e8be-4878-92ad-39186cf8aec7', '', '', '2026-02-01 07:11:32', '2026-02-01 07:11:32', '', 0, 'https://mrarif.me/royalhealth/index.php/2026/02/01/fe5ceefa-e8be-4878-92ad-39186cf8aec7/', 0, 'customize_changeset', '', 0),
(29, 1, '2026-02-01 07:11:42', '2026-02-01 07:11:42', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:11:42', '2026-02-01 07:11:42', '', 14, 'https://mrarif.me/royalhealth/?p=29', 0, 'revision', '', 0),
(30, 1, '2026-02-01 07:11:42', '2026-02-01 07:11:42', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:11:42', '2026-02-01 07:11:42', '', 14, 'https://mrarif.me/royalhealth/?p=30', 0, 'revision', '', 0),
(31, 1, '2026-02-01 07:11:43', '2026-02-01 07:11:43', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:11:43', '2026-02-01 07:11:43', '', 14, 'https://mrarif.me/royalhealth/?p=31', 0, 'revision', '', 0),
(32, 1, '2026-02-01 07:13:31', '2026-02-01 07:13:31', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#c46101\",\n                \"#ffc204\",\n                \"#00245e\",\n                \"#464647\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:13:31\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#c46101\",\n                    \"#ffc204\",\n                    \"#00245e\",\n                    \"#464647\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:13:31\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '6ba75378-b188-4224-a70a-a31dc6c2720b', '', '', '2026-02-01 07:13:31', '2026-02-01 07:13:31', '', 0, 'https://mrarif.me/royalhealth/?p=32', 0, 'customize_changeset', '', 0),
(33, 1, '2026-02-01 07:13:54', '2026-02-01 07:13:54', '{\n    \"astra-settings[button-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:13:54\"\n    },\n    \"astra-settings[button-h-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-01 07:13:54\"\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-02-01 07:13:54\"\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-02-01 07:13:54\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '6a66b003-564c-4d48-af3a-41fb6fd76194', '', '', '2026-02-01 07:13:54', '2026-02-01 07:13:54', '', 0, 'https://mrarif.me/royalhealth/index.php/2026/02/01/6a66b003-564c-4d48-af3a-41fb6fd76194/', 0, 'customize_changeset', '', 0),
(34, 1, '2026-02-01 07:14:41', '2026-02-01 07:14:41', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg\" alt=\"Untitled-5871\">\n					<h6>\n						Yermina Dumas Nico					</h6>\n								<p>Phlebotomist</p>', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2026-02-02 18:51:44', '2026-02-02 18:51:44', '', 0, 'https://mrarif.me/royalhealth/?page_id=34', 0, 'page', '', 0),
(35, 1, '2026-02-01 07:14:41', '2026-02-01 07:14:41', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 07:14:41', '2026-02-01 07:14:41', '', 34, 'https://mrarif.me/royalhealth/?p=35', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(36, 1, '2026-02-01 07:15:11', '2026-02-01 07:15:11', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2026-02-01 13:06:55', '2026-02-01 13:06:55', '', 0, 'https://mrarif.me/royalhealth/?page_id=36', 0, 'page', '', 0),
(37, 1, '2026-02-01 07:15:11', '2026-02-01 07:15:11', '', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 07:15:11', '2026-02-01 07:15:11', '', 36, 'https://mrarif.me/royalhealth/?p=37', 0, 'revision', '', 0),
(38, 1, '2026-02-01 07:17:30', '2026-02-01 07:17:30', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.\n					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. \n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.\n									</li>\n						</ul>', 'IV Therapy Services', '', 'publish', 'closed', 'closed', '', 'iv-therapy-services', '', '', '2026-02-02 06:04:31', '2026-02-02 06:04:31', '', 0, 'https://mrarif.me/royalhealth/?page_id=38', 0, 'page', '', 0),
(39, 1, '2026-02-01 07:17:30', '2026-02-01 07:17:30', '', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 07:17:30', '2026-02-01 07:17:30', '', 38, 'https://mrarif.me/royalhealth/?p=39', 0, 'revision', '', 0),
(40, 1, '2026-02-01 07:17:58', '2026-02-01 07:17:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Lymphatic Massage  Services</h2>		At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed to support circulation, reduce fluid retention, improve body contouring, and promote overall wellness. Our services include Lymphatic Massage, Lipolaser, Radiofrequency, and Cavitation, performed by trained professionals using modern techniques.			<h4>All sessions are 90 minutes and customized to your individual needs.</h4>					<h6>Pricing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Single Session (90 minutes): $120\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 3 Sessions: $330 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Package of 5 Sessions: $550 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 10 Sessions: $1,000 (Equivalent to $100 per session – best value)\n									</li>\n						</ul>\n							<h6>Call today to schedule your appointment:</h6>										<a href=\"tel:7862387785\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									786-238-7785\n					</a>', 'Lymphatic Massage Services', '', 'publish', 'closed', 'closed', '', 'lymphatic-massage-services', '', '', '2026-02-01 11:23:59', '2026-02-01 11:23:59', '', 0, 'https://mrarif.me/royalhealth/?page_id=40', 0, 'page', '', 0),
(41, 1, '2026-02-01 07:17:58', '2026-02-01 07:17:58', '', 'Lymphatic Massage Services', '', 'inherit', 'closed', 'closed', '', '40-revision-v1', '', '', '2026-02-01 07:17:58', '2026-02-01 07:17:58', '', 40, 'https://mrarif.me/royalhealth/?p=41', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(42, 1, '2026-02-01 07:18:36', '2026-02-01 07:18:36', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Annual physical exams and preventive screenings\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Primary care for adults and children\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Chronic disease management (diabetes, hypertension, asthma, and more)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Sick visits and urgent medical concerns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Women’s and men’s health services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Lab testing and diagnostic evaluations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medication management and follow-up care\n									</li>\n						</ul>', 'Family Medicine', '', 'publish', 'closed', 'closed', '', 'family-medicine', '', '', '2026-02-01 11:32:03', '2026-02-01 11:32:03', '', 0, 'https://mrarif.me/royalhealth/?page_id=42', 0, 'page', '', 0),
(43, 1, '2026-02-01 07:18:36', '2026-02-01 07:18:36', '', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 07:18:36', '2026-02-01 07:18:36', '', 42, 'https://mrarif.me/royalhealth/?p=43', 0, 'revision', '', 0),
(44, 1, '2026-02-01 07:19:12', '2026-02-01 07:19:12', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness &amp; Beauty  Services</h2>		We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.			<h6>Wellness &amp; Beauty Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medical weight management\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Vitamin injections and IV therapy\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Hormone optimization\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Skin rejuvenation treatments\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Anti-aging and aesthetic wellness services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Personalized wellness plans\n									</li>\n						</ul>', 'Wellness & Beauty Services', '', 'publish', 'closed', 'closed', '', 'wellness-beauty-services', '', '', '2026-02-01 11:53:13', '2026-02-01 11:53:13', '', 0, 'https://mrarif.me/royalhealth/?page_id=44', 0, 'page', '', 0),
(45, 1, '2026-02-01 07:19:12', '2026-02-01 07:19:12', '', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 07:19:12', '2026-02-01 07:19:12', '', 44, 'https://mrarif.me/royalhealth/?p=45', 0, 'revision', '', 0),
(46, 1, '2026-02-01 07:20:25', '2026-02-01 07:20:25', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Physical Therapy &amp; Rehabilitation   After Car Accidents</h2>		If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.			<h6>Auto Accident &amp; Physical Therapy Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Post-accident evaluations and treatment plans\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Physical therapy for neck, back, and joint injuries\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Pain management and mobility restoration\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Muscle strengthening and injury rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Whiplash and soft tissue injury treatment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Coordination with attorneys and insurance providers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Detailed medical documentation for accident-related cases\n									</li>\n						</ul>', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'publish', 'closed', 'closed', '', 'physical-therapy-rehabilitation-after-car-accidents', '', '', '2026-02-01 11:38:43', '2026-02-01 11:38:43', '', 0, 'https://mrarif.me/royalhealth/?page_id=46', 0, 'page', '', 0),
(47, 1, '2026-02-01 07:20:25', '2026-02-01 07:20:25', '', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 07:20:25', '2026-02-01 07:20:25', '', 46, 'https://mrarif.me/royalhealth/?p=47', 0, 'revision', '', 0),
(48, 1, '2026-02-01 07:21:43', '2026-02-01 07:21:43', '<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2026-02-01 10:55:24', '2026-02-01 10:55:24', '', 0, 'https://mrarif.me/royalhealth/?page_id=48', 0, 'page', '', 0),
(49, 1, '2026-02-01 07:21:43', '2026-02-01 07:21:43', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-02-01 07:21:43', '2026-02-01 07:21:43', '', 48, 'https://mrarif.me/royalhealth/?p=49', 0, 'revision', '', 0),
(50, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '50', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=50', 1, 'nav_menu_item', '', 0),
(51, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '51', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=51', 2, 'nav_menu_item', '', 0),
(52, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '52', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=52', 9, 'nav_menu_item', '', 0),
(53, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '53', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=53', 4, 'nav_menu_item', '', 0),
(54, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '54', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=54', 5, 'nav_menu_item', '', 0),
(55, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '55', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=55', 6, 'nav_menu_item', '', 0),
(56, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '56', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=56', 7, 'nav_menu_item', '', 0),
(57, 1, '2026-02-01 07:22:09', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2026-02-01 07:22:09', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/royalhealth/?p=57', 1, 'nav_menu_item', '', 0),
(58, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '58', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=58', 3, 'nav_menu_item', '', 0),
(59, 1, '2026-02-01 07:22:43', '2026-02-01 07:22:43', ' ', '', '', 'publish', 'closed', 'closed', '', '59', '', '', '2026-02-01 07:22:43', '2026-02-01 07:22:43', '', 0, 'https://mrarif.me/royalhealth/?p=59', 8, 'nav_menu_item', '', 0),
(60, 1, '2026-02-01 07:24:06', '2026-02-01 07:24:06', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:24:06', '2026-02-01 07:24:06', '', 14, 'https://mrarif.me/royalhealth/?p=60', 0, 'revision', '', 0),
(61, 1, '2026-02-01 07:24:06', '2026-02-01 07:24:06', '<h2>Welcome to</h2>					<h2>ROYAL HEALTH\nMEDICAL CENTER</h2>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:24:06', '2026-02-01 07:24:06', '', 14, 'https://mrarif.me/royalhealth/?p=61', 0, 'revision', '', 0),
(62, 1, '2026-02-01 07:24:06', '2026-02-01 07:24:06', '<h2>Welcome to</h2>					<h1>ROYAL HEALTH\nMEDICAL CENTER</h1>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:24:06', '2026-02-01 07:24:06', '', 14, 'https://mrarif.me/royalhealth/?p=62', 0, 'revision', '', 0),
(63, 1, '2026-02-01 07:34:47', '2026-02-01 07:34:47', '<h2>Welcome to</h2>					<h1>ROYAL HEALTH\nMEDICAL CENTER</h1>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:34:47', '2026-02-01 07:34:47', '', 14, 'https://mrarif.me/royalhealth/?p=63', 0, 'revision', '', 0),
(64, 1, '2026-02-01 07:34:47', '2026-02-01 07:34:47', '<h2>Welcome to</h2>					<h1>ROYAL HEALTH\nMEDICAL CENTER</h1>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:34:47', '2026-02-01 07:34:47', '', 14, 'https://mrarif.me/royalhealth/?p=64', 0, 'revision', '', 0),
(65, 1, '2026-02-01 07:34:48', '2026-02-01 07:34:48', '<h2>Welcome to</h2>					<h1>Royal Health Medical Center</h1>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:34:48', '2026-02-01 07:34:48', '', 14, 'https://mrarif.me/royalhealth/?p=65', 0, 'revision', '', 0),
(66, 1, '2026-02-01 07:36:17', '2026-02-01 07:36:17', '', 'banner (44)', '', 'inherit', 'open', 'closed', '', 'banner-44', '', '', '2026-02-01 07:36:17', '2026-02-01 07:36:17', '', 0, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/banner-44.jpg', 0, 'attachment', 'image/jpeg', 0),
(67, 1, '2026-02-01 07:39:35', '2026-02-01 07:39:35', '<h2>Welcome to</h2>					<h1>Royal Health Medical Center</h1>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:39:35', '2026-02-01 07:39:35', '', 14, 'https://mrarif.me/royalhealth/?p=67', 0, 'revision', '', 0),
(68, 1, '2026-02-01 07:39:35', '2026-02-01 07:39:35', '<h2>Welcome to</h2>					<h1>Royal Health Medical Center</h1>		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:39:35', '2026-02-01 07:39:35', '', 14, 'https://mrarif.me/royalhealth/?p=68', 0, 'revision', '', 0),
(69, 1, '2026-02-01 07:39:35', '2026-02-01 07:39:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:39:35', '2026-02-01 07:39:35', '', 14, 'https://mrarif.me/royalhealth/?p=69', 0, 'revision', '', 0),
(70, 1, '2026-02-01 07:40:41', '2026-02-01 07:40:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:40:41', '2026-02-01 07:40:41', '', 14, 'https://mrarif.me/royalhealth/?p=70', 0, 'revision', '', 0),
(71, 1, '2026-02-01 07:40:41', '2026-02-01 07:40:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:40:41', '2026-02-01 07:40:41', '', 14, 'https://mrarif.me/royalhealth/?p=71', 0, 'revision', '', 0),
(72, 1, '2026-02-01 07:40:41', '2026-02-01 07:40:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:40:41', '2026-02-01 07:40:41', '', 14, 'https://mrarif.me/royalhealth/?p=72', 0, 'revision', '', 0),
(73, 1, '2026-02-01 07:41:06', '2026-02-01 07:41:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:41:06', '2026-02-01 07:41:06', '', 14, 'https://mrarif.me/royalhealth/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-02-01 07:41:06', '2026-02-01 07:41:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:41:06', '2026-02-01 07:41:06', '', 14, 'https://mrarif.me/royalhealth/?p=74', 0, 'revision', '', 0),
(75, 1, '2026-02-01 07:41:07', '2026-02-01 07:41:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:41:07', '2026-02-01 07:41:07', '', 14, 'https://mrarif.me/royalhealth/?p=75', 0, 'revision', '', 0),
(76, 1, '2026-02-01 07:42:12', '2026-02-01 07:42:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:42:12', '2026-02-01 07:42:12', '', 14, 'https://mrarif.me/royalhealth/?p=76', 0, 'revision', '', 0),
(77, 1, '2026-02-01 07:42:12', '2026-02-01 07:42:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:42:12', '2026-02-01 07:42:12', '', 14, 'https://mrarif.me/royalhealth/?p=77', 0, 'revision', '', 0),
(78, 1, '2026-02-01 07:42:12', '2026-02-01 07:42:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:42:12', '2026-02-01 07:42:12', '', 14, 'https://mrarif.me/royalhealth/?p=78', 0, 'revision', '', 0),
(79, 1, '2026-02-01 07:43:28', '2026-02-01 07:43:28', '', 'WhatsApp Image 2026-02-01 at 13.42.59', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2026-02-01-at-13-42-59', '', '', '2026-02-01 07:43:28', '2026-02-01 07:43:28', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/WhatsApp-Image-2026-02-01-at-13.42.59.jpeg', 0, 'attachment', 'image/jpeg', 0),
(80, 1, '2026-02-01 07:44:14', '2026-02-01 07:44:14', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:44:14', '2026-02-01 07:44:14', '', 14, 'https://mrarif.me/royalhealth/?p=80', 0, 'revision', '', 0),
(81, 1, '2026-02-01 07:44:15', '2026-02-01 07:44:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:44:15', '2026-02-01 07:44:15', '', 14, 'https://mrarif.me/royalhealth/?p=81', 0, 'revision', '', 0),
(82, 1, '2026-02-01 07:44:15', '2026-02-01 07:44:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:44:15', '2026-02-01 07:44:15', '', 14, 'https://mrarif.me/royalhealth/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-02-01 07:44:34', '2026-02-01 07:44:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:44:34', '2026-02-01 07:44:34', '', 14, 'https://mrarif.me/royalhealth/?p=83', 0, 'revision', '', 0),
(84, 1, '2026-02-01 07:44:34', '2026-02-01 07:44:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:44:34', '2026-02-01 07:44:34', '', 14, 'https://mrarif.me/royalhealth/?p=84', 0, 'revision', '', 0),
(85, 1, '2026-02-01 07:44:34', '2026-02-01 07:44:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 07:44:34', '2026-02-01 07:44:34', '', 14, 'https://mrarif.me/royalhealth/?p=85', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(86, 1, '2026-02-01 07:47:08', '2026-02-01 07:47:08', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'publish', 'closed', 'closed', '', 'elementor-header-86', '', '', '2026-02-02 06:25:27', '2026-02-02 06:25:27', '', 0, 'https://mrarif.me/royalhealth/?post_type=elementor_library&#038;p=86', 0, 'elementor_library', '', 0),
(87, 1, '2026-02-01 07:45:34', '2026-02-01 07:45:34', '', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 07:45:34', '2026-02-01 07:45:34', '', 86, 'https://mrarif.me/royalhealth/?p=87', 0, 'revision', '', 0),
(88, 1, '2026-02-01 07:52:32', '2026-02-01 07:52:32', '', 'logo (9)', '', 'inherit', 'open', 'closed', '', 'logo-9', '', '', '2026-02-01 07:52:32', '2026-02-01 07:52:32', '', 86, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png', 0, 'attachment', 'image/png', 0),
(90, 1, '2026-02-01 07:58:45', '2026-02-01 07:58:45', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 07:58:45', '2026-02-01 07:58:45', '', 86, 'https://mrarif.me/royalhealth/?p=90', 0, 'revision', '', 0),
(89, 1, '2026-02-01 07:56:37', '2026-02-01 07:56:37', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n				<a href=\"tel:7862387785\" tabindex=\"-1\" aria-label=\"Call Us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 07:56:37', '2026-02-01 07:56:37', '', 86, 'https://mrarif.me/royalhealth/?p=89', 0, 'revision', '', 0),
(91, 1, '2026-02-01 08:00:42', '2026-02-01 08:00:42', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:00:42', '2026-02-01 08:00:42', '', 86, 'https://mrarif.me/royalhealth/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-02-01 08:01:46', '2026-02-01 08:01:46', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:01:46', '2026-02-01 08:01:46', '', 86, 'https://mrarif.me/royalhealth/?p=92', 0, 'revision', '', 0),
(93, 1, '2026-02-01 08:03:35', '2026-02-01 08:03:35', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:03:35', '2026-02-01 08:03:35', '', 86, 'https://mrarif.me/royalhealth/?p=93', 0, 'revision', '', 0),
(94, 1, '2026-02-01 08:04:14', '2026-02-01 08:04:14', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:04:14', '2026-02-01 08:04:14', '', 86, 'https://mrarif.me/royalhealth/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-02-01 08:06:55', '2026-02-01 08:06:55', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:06:55', '2026-02-01 08:06:55', '', 86, 'https://mrarif.me/royalhealth/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-02-01 08:08:39', '2026-02-01 08:08:39', '', 'fav (7)', '', 'inherit', 'open', 'closed', '', 'fav-7', '', '', '2026-02-01 08:08:39', '2026-02-01 08:08:39', '', 0, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/fav-7.png', 0, 'attachment', 'image/png', 0),
(97, 1, '2026-02-01 08:08:45', '2026-02-01 08:08:45', 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/cropped-fav-7.png', 'cropped-fav-7.png', '', 'inherit', 'open', 'closed', '', 'cropped-fav-7-png', '', '', '2026-02-01 08:08:45', '2026-02-01 08:08:45', '', 96, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/cropped-fav-7.png', 0, 'attachment', 'image/png', 0),
(102, 1, '2026-02-01 08:16:02', '2026-02-01 08:16:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:16:02', '2026-02-01 08:16:02', '', 14, 'https://mrarif.me/royalhealth/?p=102', 0, 'revision', '', 0),
(99, 1, '2026-02-01 08:15:51', '2026-02-01 08:15:51', '', 'banner (12)', '', 'inherit', 'open', 'closed', '', 'banner-12', '', '', '2026-02-01 08:15:51', '2026-02-01 08:15:51', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/banner-12.jpg', 0, 'attachment', 'image/jpeg', 0),
(100, 1, '2026-02-01 08:16:02', '2026-02-01 08:16:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:16:02', '2026-02-01 08:16:02', '', 14, 'https://mrarif.me/royalhealth/?p=100', 0, 'revision', '', 0),
(101, 1, '2026-02-01 08:16:02', '2026-02-01 08:16:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:16:02', '2026-02-01 08:16:02', '', 14, 'https://mrarif.me/royalhealth/?p=101', 0, 'revision', '', 0),
(103, 1, '2026-02-01 08:16:54', '2026-02-01 08:16:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:16:54', '2026-02-01 08:16:54', '', 14, 'https://mrarif.me/royalhealth/?p=103', 0, 'revision', '', 0),
(104, 1, '2026-02-01 08:16:54', '2026-02-01 08:16:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:16:54', '2026-02-01 08:16:54', '', 14, 'https://mrarif.me/royalhealth/?p=104', 0, 'revision', '', 0),
(105, 1, '2026-02-01 08:16:54', '2026-02-01 08:16:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:16:54', '2026-02-01 08:16:54', '', 14, 'https://mrarif.me/royalhealth/?p=105', 0, 'revision', '', 0),
(106, 1, '2026-02-01 08:18:19', '2026-02-01 08:18:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:18:19', '2026-02-01 08:18:19', '', 14, 'https://mrarif.me/royalhealth/?p=106', 0, 'revision', '', 0),
(107, 1, '2026-02-01 08:18:20', '2026-02-01 08:18:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:18:20', '2026-02-01 08:18:20', '', 14, 'https://mrarif.me/royalhealth/?p=107', 0, 'revision', '', 0),
(108, 1, '2026-02-01 08:18:20', '2026-02-01 08:18:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:18:20', '2026-02-01 08:18:20', '', 14, 'https://mrarif.me/royalhealth/?p=108', 0, 'revision', '', 0),
(109, 1, '2026-02-01 08:20:04', '2026-02-01 08:20:04', '', 'banner (10)', '', 'inherit', 'open', 'closed', '', 'banner-10', '', '', '2026-02-01 08:20:04', '2026-02-01 08:20:04', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/banner-10.jpg', 0, 'attachment', 'image/jpeg', 0),
(110, 1, '2026-02-01 08:20:10', '2026-02-01 08:20:10', '', 'banner (11)', '', 'inherit', 'open', 'closed', '', 'banner-11', '', '', '2026-02-01 08:20:10', '2026-02-01 08:20:10', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/banner-11.jpg', 0, 'attachment', 'image/jpeg', 0),
(111, 1, '2026-02-01 08:20:14', '2026-02-01 08:20:14', '', 'banner(1)', '', 'inherit', 'open', 'closed', '', 'banner1', '', '', '2026-02-01 08:20:14', '2026-02-01 08:20:14', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/banner1.jpg', 0, 'attachment', 'image/jpeg', 0),
(112, 1, '2026-02-01 08:20:31', '2026-02-01 08:20:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:20:31', '2026-02-01 08:20:31', '', 14, 'https://mrarif.me/royalhealth/?p=112', 0, 'revision', '', 0),
(113, 1, '2026-02-01 08:20:31', '2026-02-01 08:20:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:20:31', '2026-02-01 08:20:31', '', 14, 'https://mrarif.me/royalhealth/?p=113', 0, 'revision', '', 0),
(114, 1, '2026-02-01 08:20:31', '2026-02-01 08:20:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:20:31', '2026-02-01 08:20:31', '', 14, 'https://mrarif.me/royalhealth/?p=114', 0, 'revision', '', 0),
(115, 1, '2026-02-01 08:21:06', '2026-02-01 08:21:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:21:06', '2026-02-01 08:21:06', '', 14, 'https://mrarif.me/royalhealth/?p=115', 0, 'revision', '', 0),
(116, 1, '2026-02-01 08:21:06', '2026-02-01 08:21:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:21:06', '2026-02-01 08:21:06', '', 14, 'https://mrarif.me/royalhealth/?p=116', 0, 'revision', '', 0),
(117, 1, '2026-02-01 08:21:06', '2026-02-01 08:21:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:21:06', '2026-02-01 08:21:06', '', 14, 'https://mrarif.me/royalhealth/?p=117', 0, 'revision', '', 0),
(118, 1, '2026-02-01 08:22:23', '2026-02-01 08:22:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:22:23', '2026-02-01 08:22:23', '', 14, 'https://mrarif.me/royalhealth/?p=118', 0, 'revision', '', 0),
(119, 1, '2026-02-01 08:22:23', '2026-02-01 08:22:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:22:23', '2026-02-01 08:22:23', '', 14, 'https://mrarif.me/royalhealth/?p=119', 0, 'revision', '', 0),
(120, 1, '2026-02-01 08:22:23', '2026-02-01 08:22:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:22:23', '2026-02-01 08:22:23', '', 14, 'https://mrarif.me/royalhealth/?p=120', 0, 'revision', '', 0),
(121, 1, '2026-02-01 08:23:50', '2026-02-01 08:23:50', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:23:50', '2026-02-01 08:23:50', '', 14, 'https://mrarif.me/royalhealth/?p=121', 0, 'revision', '', 0),
(122, 1, '2026-02-01 08:23:50', '2026-02-01 08:23:50', '<h6>Welcome to</h6>					<h1>Royal Health Medical Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:23:50', '2026-02-01 08:23:50', '', 14, 'https://mrarif.me/royalhealth/?p=122', 0, 'revision', '', 0),
(123, 1, '2026-02-01 08:23:50', '2026-02-01 08:23:50', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:23:50', '2026-02-01 08:23:50', '', 14, 'https://mrarif.me/royalhealth/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-02-01 08:26:22', '2026-02-01 08:26:22', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:26:22', '2026-02-01 08:26:22', '', 14, 'https://mrarif.me/royalhealth/?p=124', 0, 'revision', '', 0),
(125, 1, '2026-02-01 08:26:22', '2026-02-01 08:26:22', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:26:22', '2026-02-01 08:26:22', '', 14, 'https://mrarif.me/royalhealth/?p=125', 0, 'revision', '', 0),
(126, 1, '2026-02-01 08:26:22', '2026-02-01 08:26:22', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:26:22', '2026-02-01 08:26:22', '', 14, 'https://mrarif.me/royalhealth/?p=126', 0, 'revision', '', 0),
(127, 1, '2026-02-01 08:27:08', '2026-02-01 08:27:08', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:27:08', '2026-02-01 08:27:08', '', 86, 'https://mrarif.me/royalhealth/?p=127', 0, 'revision', '', 0),
(128, 1, '2026-02-01 08:27:20', '2026-02-01 08:27:20', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																		\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:27:20', '2026-02-01 08:27:20', '', 86, 'https://mrarif.me/royalhealth/?p=128', 0, 'revision', '', 0),
(129, 1, '2026-02-01 08:27:38', '2026-02-01 08:27:38', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:27:38', '2026-02-01 08:27:38', '', 86, 'https://mrarif.me/royalhealth/?p=129', 0, 'revision', '', 0),
(130, 1, '2026-02-01 08:28:12', '2026-02-01 08:28:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:28:12', '2026-02-01 08:28:12', '', 14, 'https://mrarif.me/royalhealth/?p=130', 0, 'revision', '', 0),
(131, 1, '2026-02-01 08:28:12', '2026-02-01 08:28:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:28:12', '2026-02-01 08:28:12', '', 14, 'https://mrarif.me/royalhealth/?p=131', 0, 'revision', '', 0),
(132, 1, '2026-02-01 08:28:12', '2026-02-01 08:28:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:28:12', '2026-02-01 08:28:12', '', 14, 'https://mrarif.me/royalhealth/?p=132', 0, 'revision', '', 0),
(133, 1, '2026-02-01 08:28:45', '2026-02-01 08:28:45', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:28:45', '2026-02-01 08:28:45', '', 86, 'https://mrarif.me/royalhealth/?p=133', 0, 'revision', '', 0),
(134, 1, '2026-02-01 08:29:22', '2026-02-01 08:29:22', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:29:22', '2026-02-01 08:29:22', '', 86, 'https://mrarif.me/royalhealth/?p=134', 0, 'revision', '', 0),
(135, 1, '2026-02-01 08:30:07', '2026-02-01 08:30:07', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:30:07', '2026-02-01 08:30:07', '', 86, 'https://mrarif.me/royalhealth/?p=135', 0, 'revision', '', 0),
(136, 1, '2026-02-01 08:30:36', '2026-02-01 08:30:36', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:30:36', '2026-02-01 08:30:36', '', 86, 'https://mrarif.me/royalhealth/?p=136', 0, 'revision', '', 0),
(139, 1, '2026-02-01 08:31:40', '2026-02-01 08:31:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:31:40', '2026-02-01 08:31:40', '', 14, 'https://mrarif.me/royalhealth/?p=139', 0, 'revision', '', 0),
(140, 1, '2026-02-01 08:31:40', '2026-02-01 08:31:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:31:40', '2026-02-01 08:31:40', '', 14, 'https://mrarif.me/royalhealth/?p=140', 0, 'revision', '', 0),
(141, 1, '2026-02-01 08:32:13', '2026-02-01 08:32:13', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:32:13', '2026-02-01 08:32:13', '', 86, 'https://mrarif.me/royalhealth/?p=141', 0, 'revision', '', 0),
(143, 1, '2026-02-01 08:34:36', '2026-02-01 08:34:36', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:34:36', '2026-02-01 08:34:36', '', 86, 'https://mrarif.me/royalhealth/?p=143', 0, 'revision', '', 0),
(144, 1, '2026-02-01 08:34:56', '2026-02-01 08:34:56', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 08:34:56', '2026-02-01 08:34:56', '', 86, 'https://mrarif.me/royalhealth/?p=144', 0, 'revision', '', 0),
(145, 1, '2026-02-01 08:36:05', '2026-02-01 08:36:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:05', '2026-02-01 08:36:05', '', 14, 'https://mrarif.me/royalhealth/?p=145', 0, 'revision', '', 0),
(146, 1, '2026-02-01 08:36:05', '2026-02-01 08:36:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:05', '2026-02-01 08:36:05', '', 14, 'https://mrarif.me/royalhealth/?p=146', 0, 'revision', '', 0),
(147, 1, '2026-02-01 08:36:05', '2026-02-01 08:36:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:05', '2026-02-01 08:36:05', '', 14, 'https://mrarif.me/royalhealth/?p=147', 0, 'revision', '', 0),
(148, 1, '2026-02-01 08:36:34', '2026-02-01 08:36:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:34', '2026-02-01 08:36:34', '', 14, 'https://mrarif.me/royalhealth/?p=148', 0, 'revision', '', 0),
(149, 1, '2026-02-01 08:36:34', '2026-02-01 08:36:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:34', '2026-02-01 08:36:34', '', 14, 'https://mrarif.me/royalhealth/?p=149', 0, 'revision', '', 0),
(150, 1, '2026-02-01 08:36:34', '2026-02-01 08:36:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:34', '2026-02-01 08:36:34', '', 14, 'https://mrarif.me/royalhealth/?p=150', 0, 'revision', '', 0),
(151, 1, '2026-02-01 08:36:59', '2026-02-01 08:36:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:59', '2026-02-01 08:36:59', '', 14, 'https://mrarif.me/royalhealth/?p=151', 0, 'revision', '', 0),
(152, 1, '2026-02-01 08:36:59', '2026-02-01 08:36:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:59', '2026-02-01 08:36:59', '', 14, 'https://mrarif.me/royalhealth/?p=152', 0, 'revision', '', 0),
(153, 1, '2026-02-01 08:36:59', '2026-02-01 08:36:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:36:59', '2026-02-01 08:36:59', '', 14, 'https://mrarif.me/royalhealth/?p=153', 0, 'revision', '', 0),
(156, 1, '2026-02-01 08:44:08', '2026-02-01 08:44:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:44:08', '2026-02-01 08:44:08', '', 14, 'https://mrarif.me/royalhealth/?p=156', 0, 'revision', '', 0),
(157, 1, '2026-02-01 08:44:08', '2026-02-01 08:44:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:44:08', '2026-02-01 08:44:08', '', 14, 'https://mrarif.me/royalhealth/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-02-01 08:44:17', '2026-02-01 08:44:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:44:17', '2026-02-01 08:44:17', '', 14, 'https://mrarif.me/royalhealth/?p=158', 0, 'revision', '', 0),
(159, 1, '2026-02-01 08:44:17', '2026-02-01 08:44:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:44:17', '2026-02-01 08:44:17', '', 14, 'https://mrarif.me/royalhealth/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-02-01 08:44:17', '2026-02-01 08:44:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:44:17', '2026-02-01 08:44:17', '', 14, 'https://mrarif.me/royalhealth/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-02-01 08:58:23', '2026-02-01 08:58:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:58:23', '2026-02-01 08:58:23', '', 14, 'https://mrarif.me/royalhealth/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-02-01 08:58:23', '2026-02-01 08:58:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:58:23', '2026-02-01 08:58:23', '', 14, 'https://mrarif.me/royalhealth/?p=162', 0, 'revision', '', 0),
(163, 1, '2026-02-01 08:58:23', '2026-02-01 08:58:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 08:58:23', '2026-02-01 08:58:23', '', 14, 'https://mrarif.me/royalhealth/?p=163', 0, 'revision', '', 0),
(164, 1, '2026-02-01 09:00:01', '2026-02-01 09:00:01', '', 'Team', '', 'inherit', 'open', 'closed', '', 'team', '', '', '2026-02-01 09:00:01', '2026-02-01 09:00:01', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg', 0, 'attachment', 'image/jpeg', 0),
(166, 1, '2026-02-01 09:02:35', '2026-02-01 09:02:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:02:35', '2026-02-01 09:02:35', '', 14, 'https://mrarif.me/royalhealth/?p=166', 0, 'revision', '', 0),
(167, 1, '2026-02-01 09:02:35', '2026-02-01 09:02:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:02:35', '2026-02-01 09:02:35', '', 14, 'https://mrarif.me/royalhealth/?p=167', 0, 'revision', '', 0),
(168, 1, '2026-02-01 09:02:35', '2026-02-01 09:02:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:02:35', '2026-02-01 09:02:35', '', 14, 'https://mrarif.me/royalhealth/?p=168', 0, 'revision', '', 0),
(169, 1, '2026-02-01 09:03:57', '2026-02-01 09:03:57', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:03:57', '2026-02-01 09:03:57', '', 14, 'https://mrarif.me/royalhealth/?p=169', 0, 'revision', '', 0),
(170, 1, '2026-02-01 09:03:57', '2026-02-01 09:03:57', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:03:57', '2026-02-01 09:03:57', '', 14, 'https://mrarif.me/royalhealth/?p=170', 0, 'revision', '', 0),
(171, 1, '2026-02-01 09:03:58', '2026-02-01 09:03:58', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:03:58', '2026-02-01 09:03:58', '', 14, 'https://mrarif.me/royalhealth/?p=171', 0, 'revision', '', 0),
(172, 1, '2026-02-01 09:04:20', '2026-02-01 09:04:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:04:20', '2026-02-01 09:04:20', '', 14, 'https://mrarif.me/royalhealth/?p=172', 0, 'revision', '', 0),
(173, 1, '2026-02-01 09:04:20', '2026-02-01 09:04:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:04:20', '2026-02-01 09:04:20', '', 14, 'https://mrarif.me/royalhealth/?p=173', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(174, 1, '2026-02-01 09:04:20', '2026-02-01 09:04:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:04:20', '2026-02-01 09:04:20', '', 14, 'https://mrarif.me/royalhealth/?p=174', 0, 'revision', '', 0),
(175, 1, '2026-02-01 09:04:41', '2026-02-01 09:04:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:04:41', '2026-02-01 09:04:41', '', 14, 'https://mrarif.me/royalhealth/?p=175', 0, 'revision', '', 0),
(176, 1, '2026-02-01 09:04:41', '2026-02-01 09:04:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:04:41', '2026-02-01 09:04:41', '', 14, 'https://mrarif.me/royalhealth/?p=176', 0, 'revision', '', 0),
(177, 1, '2026-02-01 09:04:41', '2026-02-01 09:04:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:04:41', '2026-02-01 09:04:41', '', 14, 'https://mrarif.me/royalhealth/?p=177', 0, 'revision', '', 0),
(178, 1, '2026-02-01 09:06:26', '2026-02-01 09:06:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:06:26', '2026-02-01 09:06:26', '', 14, 'https://mrarif.me/royalhealth/?p=178', 0, 'revision', '', 0),
(179, 1, '2026-02-01 09:06:26', '2026-02-01 09:06:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:06:26', '2026-02-01 09:06:26', '', 14, 'https://mrarif.me/royalhealth/?p=179', 0, 'revision', '', 0),
(180, 1, '2026-02-01 09:06:26', '2026-02-01 09:06:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:06:26', '2026-02-01 09:06:26', '', 14, 'https://mrarif.me/royalhealth/?p=180', 0, 'revision', '', 0),
(181, 1, '2026-02-01 09:08:08', '2026-02-01 09:08:08', '', 'BANNER (30)', '', 'inherit', 'open', 'closed', '', 'banner-30', '', '', '2026-02-01 09:08:08', '2026-02-01 09:08:08', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg', 0, 'attachment', 'image/jpeg', 0),
(182, 1, '2026-02-01 09:09:45', '2026-02-01 09:09:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:09:45', '2026-02-01 09:09:45', '', 14, 'https://mrarif.me/royalhealth/?p=182', 0, 'revision', '', 0),
(183, 1, '2026-02-01 09:09:46', '2026-02-01 09:09:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:09:46', '2026-02-01 09:09:46', '', 14, 'https://mrarif.me/royalhealth/?p=183', 0, 'revision', '', 0),
(184, 1, '2026-02-01 09:09:46', '2026-02-01 09:09:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:09:46', '2026-02-01 09:09:46', '', 14, 'https://mrarif.me/royalhealth/?p=184', 0, 'revision', '', 0),
(185, 1, '2026-02-01 09:10:04', '2026-02-01 09:10:04', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:10:04', '2026-02-01 09:10:04', '', 14, 'https://mrarif.me/royalhealth/?p=185', 0, 'revision', '', 0),
(186, 1, '2026-02-01 09:10:04', '2026-02-01 09:10:04', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:10:04', '2026-02-01 09:10:04', '', 14, 'https://mrarif.me/royalhealth/?p=186', 0, 'revision', '', 0),
(187, 1, '2026-02-01 09:10:05', '2026-02-01 09:10:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:10:05', '2026-02-01 09:10:05', '', 14, 'https://mrarif.me/royalhealth/?p=187', 0, 'revision', '', 0),
(188, 1, '2026-02-01 09:12:45', '2026-02-01 09:12:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:12:45', '2026-02-01 09:12:45', '', 14, 'https://mrarif.me/royalhealth/?p=188', 0, 'revision', '', 0),
(189, 1, '2026-02-01 09:12:45', '2026-02-01 09:12:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:12:45', '2026-02-01 09:12:45', '', 14, 'https://mrarif.me/royalhealth/?p=189', 0, 'revision', '', 0),
(190, 1, '2026-02-01 09:12:45', '2026-02-01 09:12:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:12:45', '2026-02-01 09:12:45', '', 14, 'https://mrarif.me/royalhealth/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-02-01 09:12:54', '2026-02-01 09:12:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:12:54', '2026-02-01 09:12:54', '', 14, 'https://mrarif.me/royalhealth/?p=191', 0, 'revision', '', 0),
(192, 1, '2026-02-01 09:12:54', '2026-02-01 09:12:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:12:54', '2026-02-01 09:12:54', '', 14, 'https://mrarif.me/royalhealth/?p=192', 0, 'revision', '', 0),
(193, 1, '2026-02-01 09:12:54', '2026-02-01 09:12:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:12:54', '2026-02-01 09:12:54', '', 14, 'https://mrarif.me/royalhealth/?p=193', 0, 'revision', '', 0),
(194, 1, '2026-02-01 09:14:56', '2026-02-01 09:14:56', '', 'reservation_15183811', '', 'inherit', 'open', 'closed', '', 'reservation_15183811', '', '', '2026-02-01 09:14:56', '2026-02-01 09:14:56', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/reservation_15183811.svg', 0, 'attachment', 'image/svg+xml', 0),
(195, 1, '2026-02-01 09:18:19', '2026-02-01 09:18:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:18:19', '2026-02-01 09:18:19', '', 14, 'https://mrarif.me/royalhealth/?p=195', 0, 'revision', '', 0),
(196, 1, '2026-02-01 09:18:19', '2026-02-01 09:18:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:18:19', '2026-02-01 09:18:19', '', 14, 'https://mrarif.me/royalhealth/?p=196', 0, 'revision', '', 0),
(197, 1, '2026-02-01 09:18:19', '2026-02-01 09:18:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:18:19', '2026-02-01 09:18:19', '', 14, 'https://mrarif.me/royalhealth/?p=197', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 09:18:46', '2026-02-01 09:18:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:18:46', '2026-02-01 09:18:46', '', 14, 'https://mrarif.me/royalhealth/?p=198', 0, 'revision', '', 0),
(199, 1, '2026-02-01 09:18:46', '2026-02-01 09:18:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:18:46', '2026-02-01 09:18:46', '', 14, 'https://mrarif.me/royalhealth/?p=199', 0, 'revision', '', 0),
(200, 1, '2026-02-01 09:18:47', '2026-02-01 09:18:47', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:18:47', '2026-02-01 09:18:47', '', 14, 'https://mrarif.me/royalhealth/?p=200', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(201, 1, '2026-02-01 09:19:30', '2026-02-01 09:19:30', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:19:30', '2026-02-01 09:19:30', '', 14, 'https://mrarif.me/royalhealth/?p=201', 0, 'revision', '', 0),
(202, 1, '2026-02-01 09:19:30', '2026-02-01 09:19:30', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:19:30', '2026-02-01 09:19:30', '', 14, 'https://mrarif.me/royalhealth/?p=202', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(230, 1, '2026-02-01 09:30:52', '2026-02-01 09:30:52', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:30:52', '2026-02-01 09:30:52', '', 14, 'https://mrarif.me/royalhealth/?p=230', 0, 'revision', '', 0),
(223, 1, '2026-02-01 09:27:00', '2026-02-01 09:27:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path clip-rule=\"evenodd\" d=\"m67.0141 14c-7.9031 0-14.3099 6.4067-14.3099 14.3099v2.1408c0 7.9031 6.4068 14.3099 14.3099 14.3099s14.3098-6.4068 14.3098-14.3099v-2.1408c0-7.9032-6.4067-14.3099-14.3098-14.3099zm-10.3099 14.3099c0-5.694 4.6159-10.3099 10.3099-10.3099s10.3098 4.6159 10.3098 10.3099v2.1408c0 5.694-4.6158 10.3099-10.3098 10.3099s-10.3099-4.6159-10.3099-10.3099z\" fill-rule=\"evenodd\"></path><path clip-rule=\"evenodd\" d=\"m18 34.5c0-7.4558 6.0442-13.5 13.5-13.5s13.5 6.0442 13.5 13.5v2c0 7.4558-6.0442 13.5-13.5 13.5s-13.5-6.0442-13.5-13.5zm13.5-9.5c-5.2467 0-9.5 4.2533-9.5 9.5v2c0 5.2467 4.2533 9.5 9.5 9.5s9.5-4.2533 9.5-9.5v-2c0-5.2467-4.2533-9.5-9.5-9.5z\" fill-rule=\"evenodd\"></path><path d=\"m8 67.5c0-9.1127 7.3873-16.5 16.5-16.5h12c3.2033 0 6.1968.9145 8.7291 2.4959 3.1752-4.4682 8.3932-7.3832 14.292-7.3832h12.8451c4.1068 0 7.8886 1.4154 10.8762 3.7835.8656.6862 1.0111 1.9441.3249 2.8097-.6861.8657-1.944 1.0111-2.8097.325-2.306-1.8279-5.2186-2.9182-8.3914-2.9182h-12.8451c-7.4675 0-13.5211 6.0536-13.5211 13.5211 0 1.1046-.8954 2-2 2s-2-.8954-2-2c0-2.345.4607-4.5824 1.2965-6.6267-1.9561-1.2701-4.2882-2.0071-6.7965-2.0071h-12c-6.9036 0-12.5 5.5964-12.5 12.5v22.5c0 1.1046-.8954 2-2 2-1.10457 0-2-.8954-2-2z\"></path><path clip-rule=\"evenodd\" d=\"m98.6482 41c5.9348 0 10.7468 4.8114 10.7468 10.7465v1.5211c0 5.9351-4.812 10.7465-10.7468 10.7465-5.9351 0-10.7465-4.8114-10.7465-10.7465v-1.5211c0-5.9351 4.8114-10.7465 10.7465-10.7465zm6.7468 10.7465c0-3.726-3.021-6.7465-6.7468-6.7465-3.726 0-6.7465 3.0205-6.7465 6.7465v1.5211c0 3.726 3.0205 6.7465 6.7465 6.7465 3.7258 0 6.7468-3.0205 6.7468-6.7465z\" fill-rule=\"evenodd\"></path><path d=\"m117 77.9253c0-7.1953-5.833-13.0282-13.028-13.0282h-9.1269c-3.0532 0-5.866 1.0528-8.0875 2.8136-.8656.6861-1.0111 1.9441-.3249 2.8097.6861.8656 1.944 1.0111 2.8097.3249 1.5398-1.2205 3.4835-1.9482 5.6027-1.9482h9.1269c4.986 0 9.028 4.0421 9.028 9.0282v17.1127c0 1.1045.895 2 2 2s2-.8955 2-2z\"></path><path clip-rule=\"evenodd\" d=\"m55 61v17.5h-17.5c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h17.5v17.5c0 2.209 1.7909 4 4 4h12c2.2091 0 4-1.791 4-4v-17.5h17.5c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-17.5v-17.5c0-2.2091-1.7909-4-4-4h-12c-2.2091 0-4 1.7909-4 4zm0 21.5c2.2091 0 4-1.7909 4-4v-17.5h12v17.5c0 2.2091 1.7909 4 4 4h17.5v12h-17.5c-2.2091 0-4 1.7909-4 4v17.5h-12v-17.5c0-2.2091-1.7909-4-4-4h-17.5v-12z\" fill-rule=\"evenodd\"></path></g></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:27:00', '2026-02-01 09:27:00', '', 14, 'https://mrarif.me/royalhealth/?p=223', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(224, 1, '2026-02-01 09:28:51', '2026-02-01 09:28:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path clip-rule=\"evenodd\" d=\"m67.0141 14c-7.9031 0-14.3099 6.4067-14.3099 14.3099v2.1408c0 7.9031 6.4068 14.3099 14.3099 14.3099s14.3098-6.4068 14.3098-14.3099v-2.1408c0-7.9032-6.4067-14.3099-14.3098-14.3099zm-10.3099 14.3099c0-5.694 4.6159-10.3099 10.3099-10.3099s10.3098 4.6159 10.3098 10.3099v2.1408c0 5.694-4.6158 10.3099-10.3098 10.3099s-10.3099-4.6159-10.3099-10.3099z\" fill-rule=\"evenodd\"></path><path clip-rule=\"evenodd\" d=\"m18 34.5c0-7.4558 6.0442-13.5 13.5-13.5s13.5 6.0442 13.5 13.5v2c0 7.4558-6.0442 13.5-13.5 13.5s-13.5-6.0442-13.5-13.5zm13.5-9.5c-5.2467 0-9.5 4.2533-9.5 9.5v2c0 5.2467 4.2533 9.5 9.5 9.5s9.5-4.2533 9.5-9.5v-2c0-5.2467-4.2533-9.5-9.5-9.5z\" fill-rule=\"evenodd\"></path><path d=\"m8 67.5c0-9.1127 7.3873-16.5 16.5-16.5h12c3.2033 0 6.1968.9145 8.7291 2.4959 3.1752-4.4682 8.3932-7.3832 14.292-7.3832h12.8451c4.1068 0 7.8886 1.4154 10.8762 3.7835.8656.6862 1.0111 1.9441.3249 2.8097-.6861.8657-1.944 1.0111-2.8097.325-2.306-1.8279-5.2186-2.9182-8.3914-2.9182h-12.8451c-7.4675 0-13.5211 6.0536-13.5211 13.5211 0 1.1046-.8954 2-2 2s-2-.8954-2-2c0-2.345.4607-4.5824 1.2965-6.6267-1.9561-1.2701-4.2882-2.0071-6.7965-2.0071h-12c-6.9036 0-12.5 5.5964-12.5 12.5v22.5c0 1.1046-.8954 2-2 2-1.10457 0-2-.8954-2-2z\"></path><path clip-rule=\"evenodd\" d=\"m98.6482 41c5.9348 0 10.7468 4.8114 10.7468 10.7465v1.5211c0 5.9351-4.812 10.7465-10.7468 10.7465-5.9351 0-10.7465-4.8114-10.7465-10.7465v-1.5211c0-5.9351 4.8114-10.7465 10.7465-10.7465zm6.7468 10.7465c0-3.726-3.021-6.7465-6.7468-6.7465-3.726 0-6.7465 3.0205-6.7465 6.7465v1.5211c0 3.726 3.0205 6.7465 6.7465 6.7465 3.7258 0 6.7468-3.0205 6.7468-6.7465z\" fill-rule=\"evenodd\"></path><path d=\"m117 77.9253c0-7.1953-5.833-13.0282-13.028-13.0282h-9.1269c-3.0532 0-5.866 1.0528-8.0875 2.8136-.8656.6861-1.0111 1.9441-.3249 2.8097.6861.8656 1.944 1.0111 2.8097.3249 1.5398-1.2205 3.4835-1.9482 5.6027-1.9482h9.1269c4.986 0 9.028 4.0421 9.028 9.0282v17.1127c0 1.1045.895 2 2 2s2-.8955 2-2z\"></path><path clip-rule=\"evenodd\" d=\"m55 61v17.5h-17.5c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h17.5v17.5c0 2.209 1.7909 4 4 4h12c2.2091 0 4-1.791 4-4v-17.5h17.5c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-17.5v-17.5c0-2.2091-1.7909-4-4-4h-12c-2.2091 0-4 1.7909-4 4zm0 21.5c2.2091 0 4-1.7909 4-4v-17.5h12v17.5c0 2.2091 1.7909 4 4 4h17.5v12h-17.5c-2.2091 0-4 1.7909-4 4v17.5h-12v-17.5c0-2.2091-1.7909-4-4-4h-17.5v-12z\" fill-rule=\"evenodd\"></path></g></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:28:51', '2026-02-01 09:28:51', '', 14, 'https://mrarif.me/royalhealth/?p=224', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(216, 1, '2026-02-01 09:25:09', '2026-02-01 09:25:09', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:25:09', '2026-02-01 09:25:09', '', 14, 'https://mrarif.me/royalhealth/?p=216', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(203, 1, '2026-02-01 09:19:30', '2026-02-01 09:19:30', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:19:30', '2026-02-01 09:19:30', '', 14, 'https://mrarif.me/royalhealth/?p=203', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(204, 1, '2026-02-01 09:20:07', '2026-02-01 09:20:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:20:07', '2026-02-01 09:20:07', '', 14, 'https://mrarif.me/royalhealth/?p=204', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(205, 1, '2026-02-01 09:20:07', '2026-02-01 09:20:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:20:07', '2026-02-01 09:20:07', '', 14, 'https://mrarif.me/royalhealth/?p=205', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(206, 1, '2026-02-01 09:20:07', '2026-02-01 09:20:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:20:07', '2026-02-01 09:20:07', '', 14, 'https://mrarif.me/royalhealth/?p=206', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(207, 1, '2026-02-01 09:20:45', '2026-02-01 09:20:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:20:45', '2026-02-01 09:20:45', '', 14, 'https://mrarif.me/royalhealth/?p=207', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(208, 1, '2026-02-01 09:20:46', '2026-02-01 09:20:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:20:46', '2026-02-01 09:20:46', '', 14, 'https://mrarif.me/royalhealth/?p=208', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(209, 1, '2026-02-01 09:20:46', '2026-02-01 09:20:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:20:46', '2026-02-01 09:20:46', '', 14, 'https://mrarif.me/royalhealth/?p=209', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(210, 1, '2026-02-01 09:21:17', '2026-02-01 09:21:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:21:17', '2026-02-01 09:21:17', '', 14, 'https://mrarif.me/royalhealth/?p=210', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(211, 1, '2026-02-01 09:21:17', '2026-02-01 09:21:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:21:17', '2026-02-01 09:21:17', '', 14, 'https://mrarif.me/royalhealth/?p=211', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(212, 1, '2026-02-01 09:21:17', '2026-02-01 09:21:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:21:17', '2026-02-01 09:21:17', '', 14, 'https://mrarif.me/royalhealth/?p=212', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(217, 1, '2026-02-01 09:26:01', '2026-02-01 09:26:01', '', 'relaxation_247460', '', 'inherit', 'open', 'closed', '', 'relaxation_247460', '', '', '2026-02-01 09:26:01', '2026-02-01 09:26:01', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/relaxation_247460.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(214, 1, '2026-02-01 09:25:08', '2026-02-01 09:25:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:25:08', '2026-02-01 09:25:08', '', 14, 'https://mrarif.me/royalhealth/?p=214', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(215, 1, '2026-02-01 09:25:08', '2026-02-01 09:25:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:25:08', '2026-02-01 09:25:08', '', 14, 'https://mrarif.me/royalhealth/?p=215', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(218, 1, '2026-02-01 09:26:28', '2026-02-01 09:26:28', '', 'donor_17288347', '', 'inherit', 'open', 'closed', '', 'donor_17288347', '', '', '2026-02-01 09:26:28', '2026-02-01 09:26:28', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/donor_17288347.svg', 0, 'attachment', 'image/svg+xml', 0),
(219, 1, '2026-02-01 09:26:41', '2026-02-01 09:26:41', '', 'family_6861201', '', 'inherit', 'open', 'closed', '', 'family_6861201', '', '', '2026-02-01 09:26:41', '2026-02-01 09:26:41', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/family_6861201.svg', 0, 'attachment', 'image/svg+xml', 0),
(220, 1, '2026-02-01 09:26:54', '2026-02-01 09:26:54', '', 'spa_8953891', '', 'inherit', 'open', 'closed', '', 'spa_8953891', '', '', '2026-02-01 09:26:54', '2026-02-01 09:26:54', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/spa_8953891.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(221, 1, '2026-02-01 09:26:59', '2026-02-01 09:26:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:26:59', '2026-02-01 09:26:59', '', 14, 'https://mrarif.me/royalhealth/?p=221', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(222, 1, '2026-02-01 09:26:59', '2026-02-01 09:26:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\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 505.517 505.517\" style=\"enable-background:new 0 0 505.517 505.517;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M7.704,38.193c-2.708,30.179-1.611,60.741-1.263,91.005c0.056,4.843,4.039,8.88,8.914,8.914&#10;&#9;&#9;&#9;&#9;c47.42,0.331,94.83,1.601,142.253,1.67c49.358,0.072,98.703,0.105,148.061-0.163c13.381-0.073,26.757-0.233,40.136-0.47&#10;&#9;&#9;&#9;&#9;c12.881-0.229,25.974,0.102,38.794-1.205c11.839-1.207,12.187-17.931,0-18.688c-11.729-0.728-23.614-0.044-35.362,0.101&#10;&#9;&#9;&#9;&#9;c-11.583,0.143-23.166,0.25-34.749,0.437c-24.465,0.394-48.926,0.664-73.393,0.71c-49.235,0.092-98.474,0.158-147.709,0.379&#10;&#9;&#9;&#9;&#9;c-26.025,0.117-52.012-0.088-78.031-0.599c2.971,2.971,5.943,5.943,8.914,8.914c-0.247-30.28,0.243-60.871-3.053-91.005&#10;&#9;&#9;&#9;&#9;C20.275,29.586,8.49,29.433,7.704,38.193L7.704,38.193z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M12.31,40.293c6.212,0.971,12.376,2.384,18.665,2.66c6.379,0.28,12.776,0.504,19.159,0.653&#10;&#9;&#9;&#9;&#9;c12.022,0.282,24.073,0.052,36.099,0.122c24.442,0.143,48.883,0.473,73.324,0.684c49.105,0.424,98.207,1.307,147.309,1.938&#10;&#9;&#9;&#9;&#9;c28.705,0.369,57.412,0.591,86.12,0.571c-2.909-2.909-5.819-5.819-8.728-8.728c-0.21,30.821-0.66,61.724,0.511,92.529&#10;&#9;&#9;&#9;&#9;c0.371,9.759,14.611,9.715,15.13,0c1.644-30.789,1.552-61.703,1.816-92.529c0.04-4.722-4.032-8.723-8.728-8.728&#10;&#9;&#9;&#9;&#9;c-99.112-0.105-198.199-3.442-297.307-3.193c-13.907,0.035-27.822,0.037-41.728,0.279c-6.701,0.117-13.402,0.581-20.094,0.944&#10;&#9;&#9;&#9;&#9;c-7.364,0.4-14.319,1.93-21.547,3.302C7.689,31.675,7.532,39.546,12.31,40.293L12.31,40.293z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M64.877,5.778c-2.968,4.399-2.929,10.086-3.374,15.215C61,26.795,60.686,32.597,60.409,38.414&#10;&#9;&#9;&#9;&#9;c-0.259,5.45-0.494,10.903-0.825,16.35c-0.345,5.681-1.75,12.059,0.371,17.492c2.45,6.278,12.267,9.442,15.886,2.076&#10;&#9;&#9;&#9;&#9;c2.794-5.687,2.323-11.49,2.104-17.657c-0.205-5.766-0.454-11.53-0.702-17.294c-0.236-5.484-0.461-10.968-0.73-16.451&#10;&#9;&#9;&#9;&#9;c-0.282-5.737,0.216-11.973-2.596-17.152C71.934,2.126,66.98,2.662,64.877,5.778L64.877,5.778z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M136.537,5.289c-1.847,4.823-1.558,10.596-1.744,15.701c-0.197,5.427-0.444,10.852-0.723,16.276&#10;&#9;&#9;&#9;&#9;c-0.524,10.193-2.518,21.936-0.307,31.969c0.706,3.205,3.788,6.355,7.024,7.024c1.994,0.412,3.355,0.351,5.347,0&#10;&#9;&#9;&#9;&#9;c3.328-0.587,6.199-3.89,7.024-7.024c1.415-5.378,0.916-11.214,0.86-16.726c-0.055-5.375-0.227-10.735-0.469-16.104&#10;&#9;&#9;&#9;&#9;c-0.472-10.453,0.549-23.171-3.846-32.836C146.864-2.672,138.501,0.158,136.537,5.289L136.537,5.289z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M207.073,6.654c-3.487,9.927-2.565,21.833-2.831,32.241c-0.269,10.554-1.716,23.786,3.37,33.377&#10;&#9;&#9;&#9;&#9;c2.911,5.489,11.704,5.528,14.605,0c5.113-9.745,2.987-22.811,1.992-33.377c-0.986-10.456-0.788-22.298-4.329-32.241&#10;&#9;&#9;&#9;&#9;C217.648,0.388,209.292,0.336,207.073,6.654L207.073,6.654z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M275.652,5.979c-0.133,0.349-0.266,0.697-0.398,1.046c0.894-1.163,1.788-2.325,2.682-3.488&#10;&#9;&#9;&#9;&#9;c-5.241,2.842-4.593,10.416-4.803,15.541c-0.236,5.766-0.367,11.51-0.396,17.281c-0.055,11.253-0.303,22.437,1.112,33.619&#10;&#9;&#9;&#9;&#9;c0.676,5.347,4.103,9.98,9.98,9.98c5.455,0,9.928-4.568,9.98-9.98c0.11-11.272-1.066-22.405-2.111-33.619&#10;&#9;&#9;&#9;&#9;c-0.564-6.055-1.251-12.069-2.078-18.094c-0.366-2.666-0.636-5.357-1.299-7.959c-0.274-1.077-0.57-2.183-1.038-3.191&#10;&#9;&#9;&#9;&#9;c-0.28-0.859-0.757-1.603-1.433-2.231c-1.723-1.393-1.863-1.454-0.418-0.183C283.111,0.263,277.173,1.989,275.652,5.979&#10;&#9;&#9;&#9;&#9;L275.652,5.979z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M335.557,9.634c-3.592,19.917-4.415,41.044-4.035,61.325c0.247,13.172,19.463,12.962,20.312,0&#10;&#9;&#9;&#9;&#9;c1.319-20.136,0.28-41.669-4.035-61.325C346.499,3.71,336.673,3.447,335.557,9.634L335.557,9.634z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M375.557,278.103c-26.743-2.489-51.004,7.91-70.123,26.391c-18.733,18.107-30.655,43.288-32.257,69.309&#10;&#9;&#9;&#9;&#9;c-3.181,51.651,24.243,105.99,73.945,124.973c49.064,18.739,108.234-3.197,137.187-45.889&#10;&#9;&#9;&#9;&#9;c28.403-41.88,23.411-103.726-9.937-141.361c-17.304-19.529-43.752-31.348-69.207-35.348&#10;&#9;&#9;&#9;&#9;c-26.545-4.171-56.026-1.293-79.184,13.333c-5.691,3.595-11.093,7.682-16.124,12.152c-5.959,5.294,2.146,16.163,8.653,11.215&#10;&#9;&#9;&#9;&#9;c37.414-28.45,93.812-27.401,130.903,1.308c33.228,25.72,42.043,76.055,25.884,113.699&#10;&#9;&#9;&#9;&#9;c-16.973,39.541-63.273,64.432-105.692,56.83c-44.322-7.944-72.912-48.318-77.416-91.459&#10;&#9;&#9;&#9;&#9;c-2.639-25.275,3.065-49.821,19.595-69.61c16.063-19.23,40.006-33.256,64.972-36.671&#10;&#9;&#9;&#9;&#9;C382.146,286.236,380.223,278.538,375.557,278.103L375.557,278.103z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M389.352,80.636c-4.403,4.86-4.795,11.244-5.12,17.511c-0.323,6.221-0.65,12.443-0.739,18.672&#10;&#9;&#9;&#9;&#9;c-0.2,14.078-0.453,28.155-0.725,42.232c-0.555,28.675-0.136,57.375-0.502,86.056c-0.16,12.507-0.386,25.006-0.116,37.512&#10;&#9;&#9;&#9;&#9;c0.28,12.993,19.911,13.014,20.197,0c0.533-24.288,0.05-48.591,0.368-72.883c0.382-29.169,0.485-58.298,0.105-87.468&#10;&#9;&#9;&#9;&#9;c-0.094-7.235-0.355-14.434-0.75-21.66c-0.381-6.964-0.385-14.605-5.45-19.973C394.782,78.688,391.179,78.619,389.352,80.636&#10;&#9;&#9;&#9;&#9;L389.352,80.636z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M6.556,59.436c-4.022,33.585-2.895,67.848-3.155,101.613c-0.297,38.588-0.578,77.175-0.685,115.763&#10;&#9;&#9;&#9;&#9;c-0.051,18.173-0.057,36.347,0.066,54.52c0.107,15.863-0.435,32.032,0.903,47.848c0.898,10.613,3.867,20.469,12.206,27.624&#10;&#9;&#9;&#9;&#9;c8.231,7.062,17.815,10.765,28.595,11.618c12.004,0.95,24.274,0.519,36.313,0.613c12.074,0.094,24.148,0.168,36.222,0.219&#10;&#9;&#9;&#9;&#9;c27.314,0.114,54.629,0.109,81.942-0.072c27.002-0.178,54.127,0.092,81.079-1.626c13.558-0.864,13.817-21.041,0-21.275&#10;&#9;&#9;&#9;&#9;c-23.472-0.397-46.97,0.495-70.445,0.766c-23.352,0.27-46.705,0.407-70.059,0.445c-23.815,0.039-47.629-0.144-71.443-0.15&#10;&#9;&#9;&#9;&#9;c-15.215-0.004-41.126,3.867-43.829-17.116c-0.923-7.168-0.551-14.697-0.667-21.919c-0.127-7.875-0.207-15.75-0.26-23.626&#10;&#9;&#9;&#9;&#9;c-0.116-17.291-0.108-34.583-0.053-51.874c0.118-37.542,0.536-75.082,0.564-112.624c0.028-37.292,1.661-75.559-4.553-112.474&#10;&#9;&#9;&#9;&#9;c-0.534-3.17-4.218-5.038-7.117-4.646C8.749,53.529,6.947,56.175,6.556,59.436L6.556,59.436z\"></path>		</g>	</g>	<path d=\"M440.697,360.407c-5.859-5.15-11.718-10.3-17.577-15.451c-15.38,13.964-29.911,28.861-43.488,44.583&#10;&#9;&#9;c-1.745,2.02-3.871,4.236-6.537,4.1c-1.543-0.079-2.916-0.956-4.207-1.806c-6.751-4.443-13.501-8.885-20.252-13.328&#10;&#9;&#9;c-4.564,3.948-9.127,7.897-13.691,11.845c-1.817,0.223-2.245,3.285-1.928,5.087c0.317,1.802,1.564,3.28,2.765,4.661&#10;&#9;&#9;c4.175,4.806,8.35,9.613,12.525,14.42c4.786,5.51,11.39,8.261,17.427,12.363c2.915,1.98,6.034,4.031,9.555,4.173&#10;&#9;&#9;c5.446,0.219,9.891-4.087,13.581-8.099C406.908,403.343,423.917,381.108,440.697,360.407z\"></path>	<g>		<g>			<path d=\"M335.583,393.439c2.495-1.984,5.272-3.621,7.837-5.52c2.53-1.873,5.432-4.564,8.353-2.624&#10;&#9;&#9;&#9;&#9;c6.695,4.447,10.804,12.385,17.617,16.771c4.855,3.126,9.324-2.828,7.268-7.269c-2.452-5.299-7.633-9.566-12.03-13.253&#10;&#9;&#9;&#9;&#9;c-3.9-3.27-7.889-7.812-13.331-8.095c-8.45-0.44-18.223,8.117-22.217,14.97C326.558,392.749,332.083,396.222,335.583,393.439&#10;&#9;&#9;&#9;&#9;L335.583,393.439z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M340.495,378.972c-7.069,3.781-14.078,8.271-13.451,17.325c0.599,8.643,10.188,14.584,15.686,20.264&#10;&#9;&#9;&#9;&#9;c9.96,10.289,25.073,31,41.288,19.84c6.091-4.192,10.547-10.809,15.521-16.211c5.57-6.049,11.203-12.025,16.441-18.366&#10;&#9;&#9;&#9;&#9;c10.408-12.599,21.189-25.175,30.814-38.385c3.43-4.708-3.945-10.012-7.902-6.097c-18.239,18.048-34.524,38.117-50.764,57.922&#10;&#9;&#9;&#9;&#9;c-3.069,3.743-7.112,10.066-12.062,11.411c-5.253,1.428-11.098-6.909-14.303-10.038c-5.53-5.4-11.506-10.319-17.084-15.676&#10;&#9;&#9;&#9;&#9;c-2.025-1.945-5.366-3.95-5.084-6.966c0.346-3.707,3.353-6.252,5.917-8.521C349.144,382.262,344.512,376.823,340.495,378.972&#10;&#9;&#9;&#9;&#9;L340.495,378.972z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M377.162,401.51c7.493-6.054,13.178-13.486,19.443-20.72c2.681-3.096,5.361-6.193,8.027-9.302&#10;&#9;&#9;&#9;&#9;c3.336-3.89,7.917-7.809,10.107-12.421c1.837-3.868-2.111-8.986-6.306-6.307c-4.168,2.662-7.277,7.163-10.664,10.773&#10;&#9;&#9;&#9;&#9;c-3.129,3.336-6.276,6.657-9.423,9.977c-6.747,7.116-13.601,13.716-18.791,22.13C366.473,400.636,373.126,404.771,377.162,401.51&#10;&#9;&#9;&#9;&#9;L377.162,401.51z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M407.697,365.643c2.938-2.344,5.93-4.63,8.763-7.1c1.41-1.23,2.782-2.507,4.171-3.76c0.464-0.418,0.927-0.836,1.39-1.253&#10;&#9;&#9;&#9;&#9;c1.797-1.073,1.929-1.482,0.397-1.229c-1.24-0.954-2.48-1.907-3.72-2.861c4.726,6.623,14.091,14.071,22.403,15.322&#10;&#9;&#9;&#9;&#9;c3.493,0.525,7.635-2.192,6.247-6.247c-1.649-4.814-5.605-7.993-9.52-10.997c-3.903-2.994-7.855-6.484-12.783-7.315&#10;&#9;&#9;&#9;&#9;c-4.965-0.838-8.04,1.614-11.22,5.131c-4.21,4.657-8.159,9.463-12.05,14.388C398.423,363.964,403.45,369.031,407.697,365.643&#10;&#9;&#9;&#9;&#9;L407.697,365.643z\"></path>		</g>	</g>	<path d=\"M267.023,268.837c0.7-19.998-5.237-40.173-16.658-56.604c-5.842-8.406-13.466-16.092-23.18-19.32&#10;&#9;&#9;c-6.035-2.006-12.524-2.176-18.877-1.874c-16.109,0.767-32.775,4.835-44.812,15.568c-9,8.026-14.734,19.229-17.849,30.879&#10;&#9;&#9;c-3.115,11.649-3.779,23.808-3.923,35.866c21.975-4.832,44.688-4.416,67.182-3.875&#10;&#9;&#9;C228.724,269.955,247.205,268.359,267.023,268.837z\"></path>	<g>		<g>			<path d=\"M148.527,268.914c0.765-6.292-0.322-12.624,0.825-18.948c1.131-6.233,2.803-12.423,5.645-18.106&#10;&#9;&#9;&#9;&#9;c5.8-11.594,14.772-21.147,26.631-26.602c23.788-10.941,53.698-3.485,68.355,18.459c8.176,12.242,11.41,26.766,10.323,41.356&#10;&#9;&#9;&#9;&#9;c-0.629,8.446,13.153,10.367,14.855,2.01c6.75-33.137-13.97-67.132-45.425-78.435c-31.582-11.348-69.295,1.233-85.813,30.863&#10;&#9;&#9;&#9;&#9;c-4.401,7.894-7.502,16.668-8.612,25.649c-1.042,8.43-1.307,18.921,3.055,26.506&#10;&#9;&#9;&#9;&#9;C141.305,276.778,147.918,273.928,148.527,268.914L148.527,268.914z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M109.239,280.903c6.337,3.281,15.403,3.173,22.436,3.369c7.628,0.212,15.251,0.17,22.881,0.158&#10;&#9;&#9;&#9;&#9;c15.586-0.024,31.179-0.584,46.757-1.067c15.254-0.473,30.506-0.956,45.762-1.358c7.959-0.21,15.917-0.42,23.876-0.63&#10;&#9;&#9;&#9;&#9;c7.886-0.208,16.045,0.132,23.876-0.819c11.274-1.369,11.773-17.148,0-17.938c-7.873-0.528-15.988,0.258-23.876,0.478&#10;&#9;&#9;&#9;&#9;c-7.627,0.213-15.254,0.426-22.881,0.639c-15.585,0.435-31.17,0.792-46.757,1.156c-15.252,0.355-30.527,0.617-45.762,1.421&#10;&#9;&#9;&#9;&#9;c-7.964,0.42-15.926,0.801-23.876,1.454c-6.963,0.572-16.314,0.839-22.436,4.45C106.114,274.057,105.824,279.135,109.239,280.903&#10;&#9;&#9;&#9;&#9;L109.239,280.903z\"></path>		</g>	</g>	<g>		<g>			<path d=\"M208.183,193.15c-0.138-2.33-0.988-4.41-1.289-6.687c-0.062-0.47-0.045-1.547-0.039-2.027&#10;&#9;&#9;&#9;&#9;c0.017-0.333,0.035-0.667,0.052-1c0.024,2.058-1.676,3.017-5.099,2.878c-1.099-0.64-2.197-1.281-3.296-1.921&#10;&#9;&#9;&#9;&#9;c-0.304-0.493-0.5-1.028-0.586-1.604c-0.224-1.177-0.312-1.259-0.262-0.246c0.01-0.216,0.021-0.432,0.031-0.648&#10;&#9;&#9;&#9;&#9;c-0.15,0.483-0.301,0.966-0.453,1.449c-0.725,2.463-0.882,4.813-0.03,7.281c1.03,2.986,3.588,5.222,6.859,5.222&#10;&#9;&#9;&#9;&#9;c2.977,0,6.235-2.189,6.859-5.222c0.846-4.112,2.403-7.827,1.165-12.079c-1.556-5.345-7.202-8.302-12.48-6.648&#10;&#9;&#9;&#9;&#9;c-10.155,3.184-9.375,19.715-3.032,26.055C200.559,201.931,208.539,199.164,208.183,193.15L208.183,193.15z\"></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									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:26:59', '2026-02-01 09:26:59', '', 14, 'https://mrarif.me/royalhealth/?p=222', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(225, 1, '2026-02-01 09:28:51', '2026-02-01 09:28:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path clip-rule=\"evenodd\" d=\"m67.0141 14c-7.9031 0-14.3099 6.4067-14.3099 14.3099v2.1408c0 7.9031 6.4068 14.3099 14.3099 14.3099s14.3098-6.4068 14.3098-14.3099v-2.1408c0-7.9032-6.4067-14.3099-14.3098-14.3099zm-10.3099 14.3099c0-5.694 4.6159-10.3099 10.3099-10.3099s10.3098 4.6159 10.3098 10.3099v2.1408c0 5.694-4.6158 10.3099-10.3098 10.3099s-10.3099-4.6159-10.3099-10.3099z\" fill-rule=\"evenodd\"></path><path clip-rule=\"evenodd\" d=\"m18 34.5c0-7.4558 6.0442-13.5 13.5-13.5s13.5 6.0442 13.5 13.5v2c0 7.4558-6.0442 13.5-13.5 13.5s-13.5-6.0442-13.5-13.5zm13.5-9.5c-5.2467 0-9.5 4.2533-9.5 9.5v2c0 5.2467 4.2533 9.5 9.5 9.5s9.5-4.2533 9.5-9.5v-2c0-5.2467-4.2533-9.5-9.5-9.5z\" fill-rule=\"evenodd\"></path><path d=\"m8 67.5c0-9.1127 7.3873-16.5 16.5-16.5h12c3.2033 0 6.1968.9145 8.7291 2.4959 3.1752-4.4682 8.3932-7.3832 14.292-7.3832h12.8451c4.1068 0 7.8886 1.4154 10.8762 3.7835.8656.6862 1.0111 1.9441.3249 2.8097-.6861.8657-1.944 1.0111-2.8097.325-2.306-1.8279-5.2186-2.9182-8.3914-2.9182h-12.8451c-7.4675 0-13.5211 6.0536-13.5211 13.5211 0 1.1046-.8954 2-2 2s-2-.8954-2-2c0-2.345.4607-4.5824 1.2965-6.6267-1.9561-1.2701-4.2882-2.0071-6.7965-2.0071h-12c-6.9036 0-12.5 5.5964-12.5 12.5v22.5c0 1.1046-.8954 2-2 2-1.10457 0-2-.8954-2-2z\"></path><path clip-rule=\"evenodd\" d=\"m98.6482 41c5.9348 0 10.7468 4.8114 10.7468 10.7465v1.5211c0 5.9351-4.812 10.7465-10.7468 10.7465-5.9351 0-10.7465-4.8114-10.7465-10.7465v-1.5211c0-5.9351 4.8114-10.7465 10.7465-10.7465zm6.7468 10.7465c0-3.726-3.021-6.7465-6.7468-6.7465-3.726 0-6.7465 3.0205-6.7465 6.7465v1.5211c0 3.726 3.0205 6.7465 6.7465 6.7465 3.7258 0 6.7468-3.0205 6.7468-6.7465z\" fill-rule=\"evenodd\"></path><path d=\"m117 77.9253c0-7.1953-5.833-13.0282-13.028-13.0282h-9.1269c-3.0532 0-5.866 1.0528-8.0875 2.8136-.8656.6861-1.0111 1.9441-.3249 2.8097.6861.8656 1.944 1.0111 2.8097.3249 1.5398-1.2205 3.4835-1.9482 5.6027-1.9482h9.1269c4.986 0 9.028 4.0421 9.028 9.0282v17.1127c0 1.1045.895 2 2 2s2-.8955 2-2z\"></path><path clip-rule=\"evenodd\" d=\"m55 61v17.5h-17.5c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h17.5v17.5c0 2.209 1.7909 4 4 4h12c2.2091 0 4-1.791 4-4v-17.5h17.5c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-17.5v-17.5c0-2.2091-1.7909-4-4-4h-12c-2.2091 0-4 1.7909-4 4zm0 21.5c2.2091 0 4-1.7909 4-4v-17.5h12v17.5c0 2.2091 1.7909 4 4 4h17.5v12h-17.5c-2.2091 0-4 1.7909-4 4v17.5h-12v-17.5c0-2.2091-1.7909-4-4-4h-17.5v-12z\" fill-rule=\"evenodd\"></path></g></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:28:51', '2026-02-01 09:28:51', '', 14, 'https://mrarif.me/royalhealth/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-02-01 09:28:51', '2026-02-01 09:28:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path clip-rule=\"evenodd\" d=\"m67.0141 14c-7.9031 0-14.3099 6.4067-14.3099 14.3099v2.1408c0 7.9031 6.4068 14.3099 14.3099 14.3099s14.3098-6.4068 14.3098-14.3099v-2.1408c0-7.9032-6.4067-14.3099-14.3098-14.3099zm-10.3099 14.3099c0-5.694 4.6159-10.3099 10.3099-10.3099s10.3098 4.6159 10.3098 10.3099v2.1408c0 5.694-4.6158 10.3099-10.3098 10.3099s-10.3099-4.6159-10.3099-10.3099z\" fill-rule=\"evenodd\"></path><path clip-rule=\"evenodd\" d=\"m18 34.5c0-7.4558 6.0442-13.5 13.5-13.5s13.5 6.0442 13.5 13.5v2c0 7.4558-6.0442 13.5-13.5 13.5s-13.5-6.0442-13.5-13.5zm13.5-9.5c-5.2467 0-9.5 4.2533-9.5 9.5v2c0 5.2467 4.2533 9.5 9.5 9.5s9.5-4.2533 9.5-9.5v-2c0-5.2467-4.2533-9.5-9.5-9.5z\" fill-rule=\"evenodd\"></path><path d=\"m8 67.5c0-9.1127 7.3873-16.5 16.5-16.5h12c3.2033 0 6.1968.9145 8.7291 2.4959 3.1752-4.4682 8.3932-7.3832 14.292-7.3832h12.8451c4.1068 0 7.8886 1.4154 10.8762 3.7835.8656.6862 1.0111 1.9441.3249 2.8097-.6861.8657-1.944 1.0111-2.8097.325-2.306-1.8279-5.2186-2.9182-8.3914-2.9182h-12.8451c-7.4675 0-13.5211 6.0536-13.5211 13.5211 0 1.1046-.8954 2-2 2s-2-.8954-2-2c0-2.345.4607-4.5824 1.2965-6.6267-1.9561-1.2701-4.2882-2.0071-6.7965-2.0071h-12c-6.9036 0-12.5 5.5964-12.5 12.5v22.5c0 1.1046-.8954 2-2 2-1.10457 0-2-.8954-2-2z\"></path><path clip-rule=\"evenodd\" d=\"m98.6482 41c5.9348 0 10.7468 4.8114 10.7468 10.7465v1.5211c0 5.9351-4.812 10.7465-10.7468 10.7465-5.9351 0-10.7465-4.8114-10.7465-10.7465v-1.5211c0-5.9351 4.8114-10.7465 10.7465-10.7465zm6.7468 10.7465c0-3.726-3.021-6.7465-6.7468-6.7465-3.726 0-6.7465 3.0205-6.7465 6.7465v1.5211c0 3.726 3.0205 6.7465 6.7465 6.7465 3.7258 0 6.7468-3.0205 6.7468-6.7465z\" fill-rule=\"evenodd\"></path><path d=\"m117 77.9253c0-7.1953-5.833-13.0282-13.028-13.0282h-9.1269c-3.0532 0-5.866 1.0528-8.0875 2.8136-.8656.6861-1.0111 1.9441-.3249 2.8097.6861.8656 1.944 1.0111 2.8097.3249 1.5398-1.2205 3.4835-1.9482 5.6027-1.9482h9.1269c4.986 0 9.028 4.0421 9.028 9.0282v17.1127c0 1.1045.895 2 2 2s2-.8955 2-2z\"></path><path clip-rule=\"evenodd\" d=\"m55 61v17.5h-17.5c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h17.5v17.5c0 2.209 1.7909 4 4 4h12c2.2091 0 4-1.791 4-4v-17.5h17.5c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-17.5v-17.5c0-2.2091-1.7909-4-4-4h-12c-2.2091 0-4 1.7909-4 4zm0 21.5c2.2091 0 4-1.7909 4-4v-17.5h12v17.5c0 2.2091 1.7909 4 4 4h17.5v12h-17.5c-2.2091 0-4 1.7909-4 4v17.5h-12v-17.5c0-2.2091-1.7909-4-4-4h-17.5v-12z\" fill-rule=\"evenodd\"></path></g></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:28:51', '2026-02-01 09:28:51', '', 14, 'https://mrarif.me/royalhealth/?p=226', 0, 'revision', '', 0),
(227, 1, '2026-02-01 09:30:46', '2026-02-01 09:30:46', '', 'medical_14528474', '', 'inherit', 'open', 'closed', '', 'medical_14528474', '', '', '2026-02-01 09:30:46', '2026-02-01 09:30:46', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/medical_14528474.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(228, 1, '2026-02-01 09:30:52', '2026-02-01 09:30:52', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path clip-rule=\"evenodd\" d=\"m67.0141 14c-7.9031 0-14.3099 6.4067-14.3099 14.3099v2.1408c0 7.9031 6.4068 14.3099 14.3099 14.3099s14.3098-6.4068 14.3098-14.3099v-2.1408c0-7.9032-6.4067-14.3099-14.3098-14.3099zm-10.3099 14.3099c0-5.694 4.6159-10.3099 10.3099-10.3099s10.3098 4.6159 10.3098 10.3099v2.1408c0 5.694-4.6158 10.3099-10.3098 10.3099s-10.3099-4.6159-10.3099-10.3099z\" fill-rule=\"evenodd\"></path><path clip-rule=\"evenodd\" d=\"m18 34.5c0-7.4558 6.0442-13.5 13.5-13.5s13.5 6.0442 13.5 13.5v2c0 7.4558-6.0442 13.5-13.5 13.5s-13.5-6.0442-13.5-13.5zm13.5-9.5c-5.2467 0-9.5 4.2533-9.5 9.5v2c0 5.2467 4.2533 9.5 9.5 9.5s9.5-4.2533 9.5-9.5v-2c0-5.2467-4.2533-9.5-9.5-9.5z\" fill-rule=\"evenodd\"></path><path d=\"m8 67.5c0-9.1127 7.3873-16.5 16.5-16.5h12c3.2033 0 6.1968.9145 8.7291 2.4959 3.1752-4.4682 8.3932-7.3832 14.292-7.3832h12.8451c4.1068 0 7.8886 1.4154 10.8762 3.7835.8656.6862 1.0111 1.9441.3249 2.8097-.6861.8657-1.944 1.0111-2.8097.325-2.306-1.8279-5.2186-2.9182-8.3914-2.9182h-12.8451c-7.4675 0-13.5211 6.0536-13.5211 13.5211 0 1.1046-.8954 2-2 2s-2-.8954-2-2c0-2.345.4607-4.5824 1.2965-6.6267-1.9561-1.2701-4.2882-2.0071-6.7965-2.0071h-12c-6.9036 0-12.5 5.5964-12.5 12.5v22.5c0 1.1046-.8954 2-2 2-1.10457 0-2-.8954-2-2z\"></path><path clip-rule=\"evenodd\" d=\"m98.6482 41c5.9348 0 10.7468 4.8114 10.7468 10.7465v1.5211c0 5.9351-4.812 10.7465-10.7468 10.7465-5.9351 0-10.7465-4.8114-10.7465-10.7465v-1.5211c0-5.9351 4.8114-10.7465 10.7465-10.7465zm6.7468 10.7465c0-3.726-3.021-6.7465-6.7468-6.7465-3.726 0-6.7465 3.0205-6.7465 6.7465v1.5211c0 3.726 3.0205 6.7465 6.7465 6.7465 3.7258 0 6.7468-3.0205 6.7468-6.7465z\" fill-rule=\"evenodd\"></path><path d=\"m117 77.9253c0-7.1953-5.833-13.0282-13.028-13.0282h-9.1269c-3.0532 0-5.866 1.0528-8.0875 2.8136-.8656.6861-1.0111 1.9441-.3249 2.8097.6861.8656 1.944 1.0111 2.8097.3249 1.5398-1.2205 3.4835-1.9482 5.6027-1.9482h9.1269c4.986 0 9.028 4.0421 9.028 9.0282v17.1127c0 1.1045.895 2 2 2s2-.8955 2-2z\"></path><path clip-rule=\"evenodd\" d=\"m55 61v17.5h-17.5c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h17.5v17.5c0 2.209 1.7909 4 4 4h12c2.2091 0 4-1.791 4-4v-17.5h17.5c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-17.5v-17.5c0-2.2091-1.7909-4-4-4h-12c-2.2091 0-4 1.7909-4 4zm0 21.5c2.2091 0 4-1.7909 4-4v-17.5h12v17.5c0 2.2091 1.7909 4 4 4h17.5v12h-17.5c-2.2091 0-4 1.7909-4 4v17.5h-12v-17.5c0-2.2091-1.7909-4-4-4h-17.5v-12z\" fill-rule=\"evenodd\"></path></g></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:30:52', '2026-02-01 09:30:52', '', 14, 'https://mrarif.me/royalhealth/?p=228', 0, 'revision', '', 0),
(229, 1, '2026-02-01 09:30:52', '2026-02-01 09:30:52', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path clip-rule=\"evenodd\" d=\"m67.0141 14c-7.9031 0-14.3099 6.4067-14.3099 14.3099v2.1408c0 7.9031 6.4068 14.3099 14.3099 14.3099s14.3098-6.4068 14.3098-14.3099v-2.1408c0-7.9032-6.4067-14.3099-14.3098-14.3099zm-10.3099 14.3099c0-5.694 4.6159-10.3099 10.3099-10.3099s10.3098 4.6159 10.3098 10.3099v2.1408c0 5.694-4.6158 10.3099-10.3098 10.3099s-10.3099-4.6159-10.3099-10.3099z\" fill-rule=\"evenodd\"></path><path clip-rule=\"evenodd\" d=\"m18 34.5c0-7.4558 6.0442-13.5 13.5-13.5s13.5 6.0442 13.5 13.5v2c0 7.4558-6.0442 13.5-13.5 13.5s-13.5-6.0442-13.5-13.5zm13.5-9.5c-5.2467 0-9.5 4.2533-9.5 9.5v2c0 5.2467 4.2533 9.5 9.5 9.5s9.5-4.2533 9.5-9.5v-2c0-5.2467-4.2533-9.5-9.5-9.5z\" fill-rule=\"evenodd\"></path><path d=\"m8 67.5c0-9.1127 7.3873-16.5 16.5-16.5h12c3.2033 0 6.1968.9145 8.7291 2.4959 3.1752-4.4682 8.3932-7.3832 14.292-7.3832h12.8451c4.1068 0 7.8886 1.4154 10.8762 3.7835.8656.6862 1.0111 1.9441.3249 2.8097-.6861.8657-1.944 1.0111-2.8097.325-2.306-1.8279-5.2186-2.9182-8.3914-2.9182h-12.8451c-7.4675 0-13.5211 6.0536-13.5211 13.5211 0 1.1046-.8954 2-2 2s-2-.8954-2-2c0-2.345.4607-4.5824 1.2965-6.6267-1.9561-1.2701-4.2882-2.0071-6.7965-2.0071h-12c-6.9036 0-12.5 5.5964-12.5 12.5v22.5c0 1.1046-.8954 2-2 2-1.10457 0-2-.8954-2-2z\"></path><path clip-rule=\"evenodd\" d=\"m98.6482 41c5.9348 0 10.7468 4.8114 10.7468 10.7465v1.5211c0 5.9351-4.812 10.7465-10.7468 10.7465-5.9351 0-10.7465-4.8114-10.7465-10.7465v-1.5211c0-5.9351 4.8114-10.7465 10.7465-10.7465zm6.7468 10.7465c0-3.726-3.021-6.7465-6.7468-6.7465-3.726 0-6.7465 3.0205-6.7465 6.7465v1.5211c0 3.726 3.0205 6.7465 6.7465 6.7465 3.7258 0 6.7468-3.0205 6.7468-6.7465z\" fill-rule=\"evenodd\"></path><path d=\"m117 77.9253c0-7.1953-5.833-13.0282-13.028-13.0282h-9.1269c-3.0532 0-5.866 1.0528-8.0875 2.8136-.8656.6861-1.0111 1.9441-.3249 2.8097.6861.8656 1.944 1.0111 2.8097.3249 1.5398-1.2205 3.4835-1.9482 5.6027-1.9482h9.1269c4.986 0 9.028 4.0421 9.028 9.0282v17.1127c0 1.1045.895 2 2 2s2-.8955 2-2z\"></path><path clip-rule=\"evenodd\" d=\"m55 61v17.5h-17.5c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h17.5v17.5c0 2.209 1.7909 4 4 4h12c2.2091 0 4-1.791 4-4v-17.5h17.5c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-17.5v-17.5c0-2.2091-1.7909-4-4-4h-12c-2.2091 0-4 1.7909-4 4zm0 21.5c2.2091 0 4-1.7909 4-4v-17.5h12v17.5c0 2.2091 1.7909 4 4 4h17.5v12h-17.5c-2.2091 0-4 1.7909-4 4v17.5h-12v-17.5c0-2.2091-1.7909-4-4-4h-17.5v-12z\" fill-rule=\"evenodd\"></path></g></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:30:52', '2026-02-01 09:30:52', '', 14, 'https://mrarif.me/royalhealth/?p=229', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(231, 1, '2026-02-01 09:31:15', '2026-02-01 09:31:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:31:15', '2026-02-01 09:31:15', '', 14, 'https://mrarif.me/royalhealth/?p=231', 0, 'revision', '', 0),
(232, 1, '2026-02-01 09:31:15', '2026-02-01 09:31:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:31:15', '2026-02-01 09:31:15', '', 14, 'https://mrarif.me/royalhealth/?p=232', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(233, 1, '2026-02-01 09:31:16', '2026-02-01 09:31:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:31:16', '2026-02-01 09:31:16', '', 14, 'https://mrarif.me/royalhealth/?p=233', 0, 'revision', '', 0),
(234, 1, '2026-02-01 09:33:02', '2026-02-01 09:33:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:02', '2026-02-01 09:33:02', '', 14, 'https://mrarif.me/royalhealth/?p=234', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(235, 1, '2026-02-01 09:33:02', '2026-02-01 09:33:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:02', '2026-02-01 09:33:02', '', 14, 'https://mrarif.me/royalhealth/?p=235', 0, 'revision', '', 0),
(236, 1, '2026-02-01 09:33:02', '2026-02-01 09:33:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:02', '2026-02-01 09:33:02', '', 14, 'https://mrarif.me/royalhealth/?p=236', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(237, 1, '2026-02-01 09:33:36', '2026-02-01 09:33:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:36', '2026-02-01 09:33:36', '', 14, 'https://mrarif.me/royalhealth/?p=237', 0, 'revision', '', 0),
(238, 1, '2026-02-01 09:33:37', '2026-02-01 09:33:37', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:37', '2026-02-01 09:33:37', '', 14, 'https://mrarif.me/royalhealth/?p=238', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(239, 1, '2026-02-01 09:33:37', '2026-02-01 09:33:37', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:37', '2026-02-01 09:33:37', '', 14, 'https://mrarif.me/royalhealth/?p=239', 0, 'revision', '', 0),
(240, 1, '2026-02-01 09:33:54', '2026-02-01 09:33:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:54', '2026-02-01 09:33:54', '', 14, 'https://mrarif.me/royalhealth/?p=240', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(241, 1, '2026-02-01 09:33:54', '2026-02-01 09:33:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:54', '2026-02-01 09:33:54', '', 14, 'https://mrarif.me/royalhealth/?p=241', 0, 'revision', '', 0),
(242, 1, '2026-02-01 09:33:54', '2026-02-01 09:33:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:33:54', '2026-02-01 09:33:54', '', 14, 'https://mrarif.me/royalhealth/?p=242', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(243, 1, '2026-02-01 09:34:07', '2026-02-01 09:34:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:34:07', '2026-02-01 09:34:07', '', 14, 'https://mrarif.me/royalhealth/?p=243', 0, 'revision', '', 0),
(244, 1, '2026-02-01 09:34:07', '2026-02-01 09:34:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:34:07', '2026-02-01 09:34:07', '', 14, 'https://mrarif.me/royalhealth/?p=244', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(245, 1, '2026-02-01 09:34:07', '2026-02-01 09:34:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:34:07', '2026-02-01 09:34:07', '', 14, 'https://mrarif.me/royalhealth/?p=245', 0, 'revision', '', 0),
(246, 1, '2026-02-01 09:34:40', '2026-02-01 09:34:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:34:40', '2026-02-01 09:34:40', '', 14, 'https://mrarif.me/royalhealth/?p=246', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(247, 1, '2026-02-01 09:34:40', '2026-02-01 09:34:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:34:40', '2026-02-01 09:34:40', '', 14, 'https://mrarif.me/royalhealth/?p=247', 0, 'revision', '', 0),
(248, 1, '2026-02-01 09:34:40', '2026-02-01 09:34:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:34:40', '2026-02-01 09:34:40', '', 14, 'https://mrarif.me/royalhealth/?p=248', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(249, 1, '2026-02-01 09:35:02', '2026-02-01 09:35:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:35:02', '2026-02-01 09:35:02', '', 14, 'https://mrarif.me/royalhealth/?p=249', 0, 'revision', '', 0),
(250, 1, '2026-02-01 09:35:03', '2026-02-01 09:35:03', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:35:03', '2026-02-01 09:35:03', '', 14, 'https://mrarif.me/royalhealth/?p=250', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(251, 1, '2026-02-01 09:35:03', '2026-02-01 09:35:03', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:35:03', '2026-02-01 09:35:03', '', 14, 'https://mrarif.me/royalhealth/?p=251', 0, 'revision', '', 0),
(252, 1, '2026-02-01 09:35:26', '2026-02-01 09:35:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:35:26', '2026-02-01 09:35:26', '', 14, 'https://mrarif.me/royalhealth/?p=252', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(253, 1, '2026-02-01 09:35:26', '2026-02-01 09:35:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:35:26', '2026-02-01 09:35:26', '', 14, 'https://mrarif.me/royalhealth/?p=253', 0, 'revision', '', 0),
(254, 1, '2026-02-01 09:35:26', '2026-02-01 09:35:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:35:26', '2026-02-01 09:35:26', '', 14, 'https://mrarif.me/royalhealth/?p=254', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 09:36:21', '2026-02-01 09:36:21', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:36:21', '2026-02-01 09:36:21', '', 14, 'https://mrarif.me/royalhealth/?p=255', 0, 'revision', '', 0),
(256, 1, '2026-02-01 09:36:21', '2026-02-01 09:36:21', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:36:21', '2026-02-01 09:36:21', '', 14, 'https://mrarif.me/royalhealth/?p=256', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(257, 1, '2026-02-01 09:36:21', '2026-02-01 09:36:21', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:36:21', '2026-02-01 09:36:21', '', 14, 'https://mrarif.me/royalhealth/?p=257', 0, 'revision', '', 0),
(258, 1, '2026-02-01 09:38:01', '2026-02-01 09:38:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:38:01', '2026-02-01 09:38:01', '', 14, 'https://mrarif.me/royalhealth/?p=258', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(259, 1, '2026-02-01 09:38:01', '2026-02-01 09:38:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:38:01', '2026-02-01 09:38:01', '', 14, 'https://mrarif.me/royalhealth/?p=259', 0, 'revision', '', 0),
(260, 1, '2026-02-01 09:38:01', '2026-02-01 09:38:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:38:01', '2026-02-01 09:38:01', '', 14, 'https://mrarif.me/royalhealth/?p=260', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(261, 1, '2026-02-01 09:38:40', '2026-02-01 09:38:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:38:40', '2026-02-01 09:38:40', '', 14, 'https://mrarif.me/royalhealth/?p=261', 0, 'revision', '', 0),
(262, 1, '2026-02-01 09:38:40', '2026-02-01 09:38:40', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:38:40', '2026-02-01 09:38:40', '', 14, 'https://mrarif.me/royalhealth/?p=262', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(263, 1, '2026-02-01 09:38:41', '2026-02-01 09:38:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:38:41', '2026-02-01 09:38:41', '', 14, 'https://mrarif.me/royalhealth/?p=263', 0, 'revision', '', 0),
(264, 1, '2026-02-01 09:50:45', '2026-02-01 09:50:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:50:45', '2026-02-01 09:50:45', '', 14, 'https://mrarif.me/royalhealth/?p=264', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(265, 1, '2026-02-01 09:50:45', '2026-02-01 09:50:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:50:45', '2026-02-01 09:50:45', '', 14, 'https://mrarif.me/royalhealth/?p=265', 0, 'revision', '', 0),
(266, 1, '2026-02-01 09:50:46', '2026-02-01 09:50:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:50:46', '2026-02-01 09:50:46', '', 14, 'https://mrarif.me/royalhealth/?p=266', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(267, 1, '2026-02-01 09:52:17', '2026-02-01 09:52:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:52:17', '2026-02-01 09:52:17', '', 14, 'https://mrarif.me/royalhealth/?p=267', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(268, 1, '2026-02-01 09:52:17', '2026-02-01 09:52:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:52:17', '2026-02-01 09:52:17', '', 14, 'https://mrarif.me/royalhealth/?p=268', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(269, 1, '2026-02-01 09:52:18', '2026-02-01 09:52:18', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:52:18', '2026-02-01 09:52:18', '', 14, 'https://mrarif.me/royalhealth/?p=269', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(270, 1, '2026-02-01 09:52:50', '2026-02-01 09:52:50', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:52:50', '2026-02-01 09:52:50', '', 14, 'https://mrarif.me/royalhealth/?p=270', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(271, 1, '2026-02-01 09:52:51', '2026-02-01 09:52:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:52:51', '2026-02-01 09:52:51', '', 14, 'https://mrarif.me/royalhealth/?p=271', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(272, 1, '2026-02-01 09:52:51', '2026-02-01 09:52:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:52:51', '2026-02-01 09:52:51', '', 14, 'https://mrarif.me/royalhealth/?p=272', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(273, 1, '2026-02-01 09:54:25', '2026-02-01 09:54:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:54:25', '2026-02-01 09:54:25', '', 14, 'https://mrarif.me/royalhealth/?p=273', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(274, 1, '2026-02-01 09:54:25', '2026-02-01 09:54:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:54:25', '2026-02-01 09:54:25', '', 14, 'https://mrarif.me/royalhealth/?p=274', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(275, 1, '2026-02-01 09:54:26', '2026-02-01 09:54:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 09:54:26', '2026-02-01 09:54:26', '', 14, 'https://mrarif.me/royalhealth/?p=275', 0, 'revision', '', 0),
(276, 1, '2026-02-01 10:00:14', '2026-02-01 10:00:14', '<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>About A.R.I.S.E.  Health</h2>					<h6>Our Mission</h6>		  At A.R.I.S.E. Health & Wellness, our mission is to Affirm, Restore, Inspire, Support, and Empower women and children to achieve mental and emotional wellness. We provide compassionate, evidence-based mental health care and personalized medication management that 								<a href=\"https://mrarif.me/arise/about-us/\">\n									learn more\n					</a>', 'about', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2026-02-01 10:00:14', '2026-02-01 10:00:14', '', 0, 'https://mrarif.me/royalhealth/?elementor_library=about', 0, 'elementor_library', '', 0),
(277, 1, '2026-02-01 10:00:14', '2026-02-01 10:00:14', '', 'about', '', 'inherit', 'closed', 'closed', '', '276-revision-v1', '', '', '2026-02-01 10:00:14', '2026-02-01 10:00:14', '', 276, 'https://mrarif.me/royalhealth/?p=277', 0, 'revision', '', 0),
(278, 1, '2026-02-01 10:00:14', '2026-02-01 10:00:14', '<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>About A.R.I.S.E.  Health</h2>					<h6>Our Mission</h6>		  At A.R.I.S.E. Health & Wellness, our mission is to Affirm, Restore, Inspire, Support, and Empower women and children to achieve mental and emotional wellness. We provide compassionate, evidence-based mental health care and personalized medication management that 								<a href=\"https://mrarif.me/arise/about-us/\">\n									learn more\n					</a>', 'about', '', 'inherit', 'closed', 'closed', '', '276-revision-v1', '', '', '2026-02-01 10:00:14', '2026-02-01 10:00:14', '', 276, 'https://mrarif.me/royalhealth/?p=278', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(282, 1, '2026-02-01 10:05:07', '2026-02-01 10:05:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:05:07', '2026-02-01 10:05:07', '', 14, 'https://mrarif.me/royalhealth/?p=282', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(280, 1, '2026-02-01 10:05:06', '2026-02-01 10:05:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:05:06', '2026-02-01 10:05:06', '', 14, 'https://mrarif.me/royalhealth/?p=280', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(281, 1, '2026-02-01 10:05:06', '2026-02-01 10:05:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:05:06', '2026-02-01 10:05:06', '', 14, 'https://mrarif.me/royalhealth/?p=281', 0, 'revision', '', 0),
(283, 1, '2026-02-01 10:08:36', '2026-02-01 10:08:36', '', 'about (9)', '', 'inherit', 'open', 'closed', '', 'about-9', '', '', '2026-02-01 10:08:36', '2026-02-01 10:08:36', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg', 0, 'attachment', 'image/jpeg', 0),
(284, 1, '2026-02-01 10:08:50', '2026-02-01 10:08:50', '', 'services-2-1', '', 'inherit', 'open', 'closed', '', 'services-2-1', '', '', '2026-02-01 10:08:50', '2026-02-01 10:08:50', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(285, 1, '2026-02-01 10:09:51', '2026-02-01 10:09:51', '', 'Primary Care', '', 'inherit', 'open', 'closed', '', 'primary-care', '', '', '2026-02-01 10:09:51', '2026-02-01 10:09:51', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(289, 1, '2026-02-01 10:10:31', '2026-02-01 10:10:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:10:31', '2026-02-01 10:10:31', '', 14, 'https://mrarif.me/royalhealth/?p=289', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(287, 1, '2026-02-01 10:10:30', '2026-02-01 10:10:30', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:10:30', '2026-02-01 10:10:30', '', 14, 'https://mrarif.me/royalhealth/?p=287', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(288, 1, '2026-02-01 10:10:30', '2026-02-01 10:10:30', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																										<img src=\"https://mrarif.me/royalhealth/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:10:30', '2026-02-01 10:10:30', '', 14, 'https://mrarif.me/royalhealth/?p=288', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(290, 1, '2026-02-01 10:14:25', '2026-02-01 10:14:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:14:25', '2026-02-01 10:14:25', '', 14, 'https://mrarif.me/royalhealth/?p=290', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(291, 1, '2026-02-01 10:14:25', '2026-02-01 10:14:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:14:25', '2026-02-01 10:14:25', '', 14, 'https://mrarif.me/royalhealth/?p=291', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(292, 1, '2026-02-01 10:14:25', '2026-02-01 10:14:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:14:25', '2026-02-01 10:14:25', '', 14, 'https://mrarif.me/royalhealth/?p=292', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(293, 1, '2026-02-01 10:14:35', '2026-02-01 10:14:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:14:35', '2026-02-01 10:14:35', '', 14, 'https://mrarif.me/royalhealth/?p=293', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(294, 1, '2026-02-01 10:14:35', '2026-02-01 10:14:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:14:35', '2026-02-01 10:14:35', '', 14, 'https://mrarif.me/royalhealth/?p=294', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(295, 1, '2026-02-01 10:14:36', '2026-02-01 10:14:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:14:36', '2026-02-01 10:14:36', '', 14, 'https://mrarif.me/royalhealth/?p=295', 0, 'revision', '', 0),
(296, 1, '2026-02-01 10:16:09', '2026-02-01 10:16:09', '', 'Team', '', 'inherit', 'open', 'closed', '', 'team-2', '', '', '2026-02-01 10:16:09', '2026-02-01 10:16:09', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(297, 1, '2026-02-01 10:16:45', '2026-02-01 10:16:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:16:45', '2026-02-01 10:16:45', '', 14, 'https://mrarif.me/royalhealth/?p=297', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(298, 1, '2026-02-01 10:16:45', '2026-02-01 10:16:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:16:45', '2026-02-01 10:16:45', '', 14, 'https://mrarif.me/royalhealth/?p=298', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(299, 1, '2026-02-01 10:16:45', '2026-02-01 10:16:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:16:45', '2026-02-01 10:16:45', '', 14, 'https://mrarif.me/royalhealth/?p=299', 0, 'revision', '', 0),
(300, 1, '2026-02-01 10:19:16', '2026-02-01 10:19:16', '', 'diagnosis_4625898', '', 'inherit', 'open', 'closed', '', 'diagnosis_4625898', '', '', '2026-02-01 10:19:16', '2026-02-01 10:19:16', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/diagnosis_4625898.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(301, 1, '2026-02-01 10:19:26', '2026-02-01 10:19:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:19:26', '2026-02-01 10:19:26', '', 14, 'https://mrarif.me/royalhealth/?p=301', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(302, 1, '2026-02-01 10:19:26', '2026-02-01 10:19:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:19:26', '2026-02-01 10:19:26', '', 14, 'https://mrarif.me/royalhealth/?p=302', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(303, 1, '2026-02-01 10:19:26', '2026-02-01 10:19:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:19:26', '2026-02-01 10:19:26', '', 14, 'https://mrarif.me/royalhealth/?p=303', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(304, 1, '2026-02-01 10:20:23', '2026-02-01 10:20:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:20:23', '2026-02-01 10:20:23', '', 14, 'https://mrarif.me/royalhealth/?p=304', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(305, 1, '2026-02-01 10:20:23', '2026-02-01 10:20:23', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:20:23', '2026-02-01 10:20:23', '', 14, 'https://mrarif.me/royalhealth/?p=305', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(306, 1, '2026-02-01 10:20:24', '2026-02-01 10:20:24', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:20:24', '2026-02-01 10:20:24', '', 14, 'https://mrarif.me/royalhealth/?p=306', 0, 'revision', '', 0),
(307, 1, '2026-02-01 10:22:35', '2026-02-01 10:22:35', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/royalhealth/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/royalhealthmed\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3383%20NW%207th%20ST%20Suite%20305%20%26%20306%20Miami%20FL%2033125&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n					aria-label=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n			></iframe>\n							<p>© 2026 Royal Health Medical Center. All Rights Reserved.</p>', 'Elementor Footer #307', '', 'publish', 'closed', 'closed', '', 'elementor-footer-307', '', '', '2026-02-02 06:12:16', '2026-02-02 06:12:16', '', 0, 'https://mrarif.me/royalhealth/?post_type=elementor_library&#038;p=307', 0, 'elementor_library', '', 0),
(308, 1, '2026-02-01 10:22:35', '2026-02-01 10:22:35', '', 'Elementor Footer #307', '', 'inherit', 'closed', 'closed', '', '307-revision-v1', '', '', '2026-02-01 10:22:35', '2026-02-01 10:22:35', '', 307, 'https://mrarif.me/royalhealth/?p=308', 0, 'revision', '', 0),
(309, 1, '2026-02-01 10:26:53', '2026-02-01 10:26:53', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/royalhealth/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3383%20NW%207th%20ST%20Suite%20305%20%26%20306%20Miami%20FL%2033125&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n					aria-label=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n			></iframe>', 'Elementor Footer #307', '', 'inherit', 'closed', 'closed', '', '307-revision-v1', '', '', '2026-02-01 10:26:53', '2026-02-01 10:26:53', '', 307, 'https://mrarif.me/royalhealth/?p=309', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(317, 1, '2026-02-01 10:43:02', '2026-02-01 10:43:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:43:02', '2026-02-01 10:43:02', '', 14, 'https://mrarif.me/royalhealth/?p=317', 0, 'revision', '', 0),
(312, 1, '2026-02-01 10:30:34', '2026-02-01 10:30:34', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/royalhealth/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3383%20NW%207th%20ST%20Suite%20305%20%26%20306%20Miami%20FL%2033125&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n					aria-label=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n			></iframe>\n							<p>© 2026 Royal Health Medical Center. All Rights Reserved.</p>', 'Elementor Footer #307', '', 'inherit', 'closed', 'closed', '', '307-revision-v1', '', '', '2026-02-01 10:30:34', '2026-02-01 10:30:34', '', 307, 'https://mrarif.me/royalhealth/?p=312', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(313, 1, '2026-02-01 10:31:19', '2026-02-01 10:31:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:31:19', '2026-02-01 10:31:19', '', 14, 'https://mrarif.me/royalhealth/?p=313', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(314, 1, '2026-02-01 10:31:19', '2026-02-01 10:31:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:31:19', '2026-02-01 10:31:19', '', 14, 'https://mrarif.me/royalhealth/?p=314', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(315, 1, '2026-02-01 10:31:19', '2026-02-01 10:31:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:31:19', '2026-02-01 10:31:19', '', 14, 'https://mrarif.me/royalhealth/?p=315', 0, 'revision', '', 0),
(316, 1, '2026-02-01 10:36:29', '2026-02-01 10:36:29', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 10:36:29', '2026-02-01 10:36:29', '', 86, 'https://mrarif.me/royalhealth/?p=316', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(318, 1, '2026-02-01 10:43:02', '2026-02-01 10:43:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, 								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:43:02', '2026-02-01 10:43:02', '', 14, 'https://mrarif.me/royalhealth/?p=318', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(319, 1, '2026-02-01 10:43:02', '2026-02-01 10:43:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:43:02', '2026-02-01 10:43:02', '', 14, 'https://mrarif.me/royalhealth/?p=319', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(320, 1, '2026-02-01 10:44:43', '2026-02-01 10:44:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:44:43', '2026-02-01 10:44:43', '', 14, 'https://mrarif.me/royalhealth/?p=320', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(321, 1, '2026-02-01 10:44:43', '2026-02-01 10:44:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a role=\"button\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:44:43', '2026-02-01 10:44:43', '', 14, 'https://mrarif.me/royalhealth/?p=321', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(322, 1, '2026-02-01 10:44:43', '2026-02-01 10:44:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:44:43', '2026-02-01 10:44:43', '', 14, 'https://mrarif.me/royalhealth/?p=322', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(323, 1, '2026-02-01 10:45:54', '2026-02-01 10:45:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:45:54', '2026-02-01 10:45:54', '', 14, 'https://mrarif.me/royalhealth/?p=323', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(324, 1, '2026-02-01 10:45:54', '2026-02-01 10:45:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"#\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:45:54', '2026-02-01 10:45:54', '', 14, 'https://mrarif.me/royalhealth/?p=324', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(325, 1, '2026-02-01 10:45:54', '2026-02-01 10:45:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:45:54', '2026-02-01 10:45:54', '', 14, 'https://mrarif.me/royalhealth/?p=325', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(326, 1, '2026-02-01 10:46:33', '2026-02-01 10:46:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:46:33', '2026-02-01 10:46:33', '', 14, 'https://mrarif.me/royalhealth/?p=326', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(327, 1, '2026-02-01 10:46:33', '2026-02-01 10:46:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:46:33', '2026-02-01 10:46:33', '', 14, 'https://mrarif.me/royalhealth/?p=327', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(328, 1, '2026-02-01 10:46:33', '2026-02-01 10:46:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:46:33', '2026-02-01 10:46:33', '', 14, 'https://mrarif.me/royalhealth/?p=328', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(329, 1, '2026-02-01 10:49:01', '2026-02-01 10:49:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:49:01', '2026-02-01 10:49:01', '', 14, 'https://mrarif.me/royalhealth/?p=329', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(330, 1, '2026-02-01 10:49:01', '2026-02-01 10:49:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"#\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:49:01', '2026-02-01 10:49:01', '', 14, 'https://mrarif.me/royalhealth/?p=330', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(331, 1, '2026-02-01 10:49:01', '2026-02-01 10:49:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:49:01', '2026-02-01 10:49:01', '', 14, 'https://mrarif.me/royalhealth/?p=331', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(332, 1, '2026-02-01 10:50:31', '2026-02-01 10:50:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:50:31', '2026-02-01 10:50:31', '', 14, 'https://mrarif.me/royalhealth/?p=332', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(333, 1, '2026-02-01 10:50:31', '2026-02-01 10:50:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:50:31', '2026-02-01 10:50:31', '', 14, 'https://mrarif.me/royalhealth/?p=333', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(334, 1, '2026-02-01 10:50:31', '2026-02-01 10:50:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 10:50:31', '2026-02-01 10:50:31', '', 14, 'https://mrarif.me/royalhealth/?p=334', 0, 'revision', '', 0),
(335, 1, '2026-02-01 10:52:48', '2026-02-01 10:52:48', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 10:52:48', '2026-02-01 10:52:48', '', 86, 'https://mrarif.me/royalhealth/?p=335', 0, 'revision', '', 0),
(336, 1, '2026-02-01 10:53:01', '2026-02-01 10:53:01', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-01 10:53:01', '2026-02-01 10:53:01', '', 86, 'https://mrarif.me/royalhealth/?p=336', 0, 'revision', '', 0),
(337, 1, '2026-02-01 10:55:24', '2026-02-01 10:55:24', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-02-01 10:55:24', '2026-02-01 10:55:24', '', 48, 'https://mrarif.me/royalhealth/?p=337', 0, 'revision', '', 0),
(338, 1, '2026-02-01 10:55:24', '2026-02-01 10:55:24', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-02-01 10:55:24', '2026-02-01 10:55:24', '', 48, 'https://mrarif.me/royalhealth/?p=338', 0, 'revision', '', 0),
(339, 1, '2026-02-01 10:55:24', '2026-02-01 10:55:24', '<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Contact', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-02-01 10:55:24', '2026-02-01 10:55:24', '', 48, 'https://mrarif.me/royalhealth/?p=339', 0, 'revision', '', 0),
(340, 1, '2026-02-01 10:56:24', '2026-02-01 10:56:24', '', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:24', '2026-02-01 10:56:24', '', 36, 'https://mrarif.me/royalhealth/?p=340', 0, 'revision', '', 0),
(341, 1, '2026-02-01 10:56:24', '2026-02-01 10:56:24', '', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:24', '2026-02-01 10:56:24', '', 36, 'https://mrarif.me/royalhealth/?p=341', 0, 'revision', '', 0),
(342, 1, '2026-02-01 10:56:24', '2026-02-01 10:56:24', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:24', '2026-02-01 10:56:24', '', 36, 'https://mrarif.me/royalhealth/?p=342', 0, 'revision', '', 0),
(343, 1, '2026-02-01 10:56:37', '2026-02-01 10:56:37', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:37', '2026-02-01 10:56:37', '', 36, 'https://mrarif.me/royalhealth/?p=343', 0, 'revision', '', 0),
(344, 1, '2026-02-01 10:56:37', '2026-02-01 10:56:37', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:37', '2026-02-01 10:56:37', '', 36, 'https://mrarif.me/royalhealth/?p=344', 0, 'revision', '', 0),
(348, 1, '2026-02-01 10:56:41', '2026-02-01 10:56:41', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:41', '2026-02-01 10:56:41', '', 36, 'https://mrarif.me/royalhealth/?p=348', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(345, 1, '2026-02-01 10:56:37', '2026-02-01 10:56:37', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:37', '2026-02-01 10:56:37', '', 36, 'https://mrarif.me/royalhealth/?p=345', 0, 'revision', '', 0),
(346, 1, '2026-02-01 10:56:41', '2026-02-01 10:56:41', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:41', '2026-02-01 10:56:41', '', 36, 'https://mrarif.me/royalhealth/?p=346', 0, 'revision', '', 0),
(347, 1, '2026-02-01 10:56:41', '2026-02-01 10:56:41', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:56:41', '2026-02-01 10:56:41', '', 36, 'https://mrarif.me/royalhealth/?p=347', 0, 'revision', '', 0),
(349, 1, '2026-02-01 10:57:42', '2026-02-01 10:57:42', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:57:42', '2026-02-01 10:57:42', '', 36, 'https://mrarif.me/royalhealth/?p=349', 0, 'revision', '', 0),
(350, 1, '2026-02-01 10:57:42', '2026-02-01 10:57:42', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:57:42', '2026-02-01 10:57:42', '', 36, 'https://mrarif.me/royalhealth/?p=350', 0, 'revision', '', 0),
(351, 1, '2026-02-01 10:57:42', '2026-02-01 10:57:42', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 10:57:42', '2026-02-01 10:57:42', '', 36, 'https://mrarif.me/royalhealth/?p=351', 0, 'revision', '', 0),
(352, 1, '2026-02-01 11:01:20', '2026-02-01 11:01:20', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:01:20', '2026-02-01 11:01:20', '', 36, 'https://mrarif.me/royalhealth/?p=352', 0, 'revision', '', 0),
(353, 1, '2026-02-01 11:01:20', '2026-02-01 11:01:20', '<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:01:20', '2026-02-01 11:01:20', '', 36, 'https://mrarif.me/royalhealth/?p=353', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(354, 1, '2026-02-01 11:01:20', '2026-02-01 11:01:20', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:01:20', '2026-02-01 11:01:20', '', 36, 'https://mrarif.me/royalhealth/?p=354', 0, 'revision', '', 0),
(355, 1, '2026-02-01 11:03:01', '2026-02-01 11:03:01', '', 'car_12835640', '', 'inherit', 'open', 'closed', '', 'car_12835640', '', '', '2026-02-01 11:03:01', '2026-02-01 11:03:01', '', 36, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/car_12835640.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(356, 1, '2026-02-01 11:03:07', '2026-02-01 11:03:07', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:03:07', '2026-02-01 11:03:07', '', 36, 'https://mrarif.me/royalhealth/?p=356', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(357, 1, '2026-02-01 11:03:07', '2026-02-01 11:03:07', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:03:07', '2026-02-01 11:03:07', '', 36, 'https://mrarif.me/royalhealth/?p=357', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(358, 1, '2026-02-01 11:03:07', '2026-02-01 11:03:07', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:03:07', '2026-02-01 11:03:07', '', 36, 'https://mrarif.me/royalhealth/?p=358', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(359, 1, '2026-02-01 11:03:36', '2026-02-01 11:03:36', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:03:36', '2026-02-01 11:03:36', '', 36, 'https://mrarif.me/royalhealth/?p=359', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:03:36', '2026-02-01 11:03:36', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:03:36', '2026-02-01 11:03:36', '', 36, 'https://mrarif.me/royalhealth/?p=360', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:03:36', '2026-02-01 11:03:36', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:03:36', '2026-02-01 11:03:36', '', 36, 'https://mrarif.me/royalhealth/?p=361', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:05:23', '2026-02-01 11:05:23', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:05:23', '2026-02-01 11:05:23', '', 36, 'https://mrarif.me/royalhealth/?p=362', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:05:23', '2026-02-01 11:05:23', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:05:23', '2026-02-01 11:05:23', '', 36, 'https://mrarif.me/royalhealth/?p=363', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:05:23', '2026-02-01 11:05:23', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 11:05:23', '2026-02-01 11:05:23', '', 36, 'https://mrarif.me/royalhealth/?p=364', 0, 'revision', '', 0),
(365, 1, '2026-02-01 11:10:45', '2026-02-01 11:10:45', '', 'IV Therapy Services', '', 'inherit', 'open', 'closed', '', 'iv-therapy-services-2', '', '', '2026-02-01 11:10:45', '2026-02-01 11:10:45', '', 38, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg', 0, 'attachment', 'image/jpeg', 0),
(366, 1, '2026-02-01 11:12:21', '2026-02-01 11:12:21', '', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:12:21', '2026-02-01 11:12:21', '', 38, 'https://mrarif.me/royalhealth/?p=366', 0, 'revision', '', 0),
(367, 1, '2026-02-01 11:12:21', '2026-02-01 11:12:21', '', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:12:21', '2026-02-01 11:12:21', '', 38, 'https://mrarif.me/royalhealth/?p=367', 0, 'revision', '', 0),
(368, 1, '2026-02-01 11:12:21', '2026-02-01 11:12:21', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:12:21', '2026-02-01 11:12:21', '', 38, 'https://mrarif.me/royalhealth/?p=368', 0, 'revision', '', 0),
(369, 1, '2026-02-01 11:15:30', '2026-02-01 11:15:30', '', 'IV Therapy Services', '', 'inherit', 'open', 'closed', '', 'iv-therapy-services-3', '', '', '2026-02-01 11:15:30', '2026-02-01 11:15:30', '', 38, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpg', 0, 'attachment', 'image/jpeg', 0),
(370, 1, '2026-02-01 11:15:35', '2026-02-01 11:15:35', '', 'IV Therapy Services', '', 'inherit', 'open', 'closed', '', 'iv-therapy-services-4', '', '', '2026-02-01 11:15:35', '2026-02-01 11:15:35', '', 38, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(371, 1, '2026-02-01 11:15:46', '2026-02-01 11:15:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:15:46', '2026-02-01 11:15:46', '', 38, 'https://mrarif.me/royalhealth/?p=371', 0, 'revision', '', 0),
(372, 1, '2026-02-01 11:15:46', '2026-02-01 11:15:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:15:46', '2026-02-01 11:15:46', '', 38, 'https://mrarif.me/royalhealth/?p=372', 0, 'revision', '', 0),
(373, 1, '2026-02-01 11:15:46', '2026-02-01 11:15:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:15:46', '2026-02-01 11:15:46', '', 38, 'https://mrarif.me/royalhealth/?p=373', 0, 'revision', '', 0),
(374, 1, '2026-02-01 11:18:43', '2026-02-01 11:18:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:18:43', '2026-02-01 11:18:43', '', 38, 'https://mrarif.me/royalhealth/?p=374', 0, 'revision', '', 0),
(375, 1, '2026-02-01 11:18:43', '2026-02-01 11:18:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:18:43', '2026-02-01 11:18:43', '', 38, 'https://mrarif.me/royalhealth/?p=375', 0, 'revision', '', 0),
(376, 1, '2026-02-01 11:18:43', '2026-02-01 11:18:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-01 11:18:43', '2026-02-01 11:18:43', '', 38, 'https://mrarif.me/royalhealth/?p=376', 0, 'revision', '', 0),
(377, 1, '2026-02-01 11:19:30', '2026-02-01 11:19:30', '', 'Lymphati', '', 'inherit', 'open', 'closed', '', 'lymphati', '', '', '2026-02-01 11:19:30', '2026-02-01 11:19:30', '', 40, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg', 0, 'attachment', 'image/jpeg', 0),
(378, 1, '2026-02-01 11:20:51', '2026-02-01 11:20:51', '', 'label_3388576', '', 'inherit', 'open', 'closed', '', 'label_3388576', '', '', '2026-02-01 11:20:51', '2026-02-01 11:20:51', '', 40, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/label_3388576.svg', 0, 'attachment', 'image/svg+xml', 0),
(379, 1, '2026-02-01 11:23:59', '2026-02-01 11:23:59', '', 'Lymphatic Massage Services', '', 'inherit', 'closed', 'closed', '', '40-revision-v1', '', '', '2026-02-01 11:23:59', '2026-02-01 11:23:59', '', 40, 'https://mrarif.me/royalhealth/?p=379', 0, 'revision', '', 0),
(380, 1, '2026-02-01 11:23:59', '2026-02-01 11:23:59', '', 'Lymphatic Massage Services', '', 'inherit', 'closed', 'closed', '', '40-revision-v1', '', '', '2026-02-01 11:23:59', '2026-02-01 11:23:59', '', 40, 'https://mrarif.me/royalhealth/?p=380', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(381, 1, '2026-02-01 11:23:59', '2026-02-01 11:23:59', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Lymphatic Massage  Services</h2>		At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed to support circulation, reduce fluid retention, improve body contouring, and promote overall wellness. Our services include Lymphatic Massage, Lipolaser, Radiofrequency, and Cavitation, performed by trained professionals using modern techniques.			<h4>All sessions are 90 minutes and customized to your individual needs.</h4>					<h6>Pricing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Single Session (90 minutes): $120\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 3 Sessions: $330 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Package of 5 Sessions: $550 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 10 Sessions: $1,000 (Equivalent to $100 per session – best value)\n									</li>\n						</ul>\n							<h6>Call today to schedule your appointment:</h6>										<a href=\"tel:7862387785\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									786-238-7785\n					</a>', 'Lymphatic Massage Services', '', 'inherit', 'closed', 'closed', '', '40-revision-v1', '', '', '2026-02-01 11:23:59', '2026-02-01 11:23:59', '', 40, 'https://mrarif.me/royalhealth/?p=381', 0, 'revision', '', 0),
(382, 1, '2026-02-01 11:26:25', '2026-02-01 11:26:25', '', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:26:25', '2026-02-01 11:26:25', '', 42, 'https://mrarif.me/royalhealth/?p=382', 0, 'revision', '', 0),
(383, 1, '2026-02-01 11:26:25', '2026-02-01 11:26:25', '', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:26:25', '2026-02-01 11:26:25', '', 42, 'https://mrarif.me/royalhealth/?p=383', 0, 'revision', '', 0),
(384, 1, '2026-02-01 11:26:25', '2026-02-01 11:26:25', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Single Session (90 minutes): $120\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 3 Sessions: $330 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Package of 5 Sessions: $550 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 10 Sessions: $1,000 (Equivalent to $100 per session – best value)\n									</li>\n						</ul>\n							<h6>Call today to schedule your appointment:</h6>										<a href=\"tel:7862387785\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									786-238-7785\n					</a>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:26:25', '2026-02-01 11:26:25', '', 42, 'https://mrarif.me/royalhealth/?p=384', 0, 'revision', '', 0),
(385, 1, '2026-02-01 11:29:47', '2026-02-01 11:29:47', '', 'Family Medicine', '', 'inherit', 'open', 'closed', '', 'family-medicine-2', '', '', '2026-02-01 11:29:47', '2026-02-01 11:29:47', '', 42, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine.jpeg', 0, 'attachment', 'image/jpeg', 0),
(386, 1, '2026-02-01 11:30:06', '2026-02-01 11:30:06', '', 'Family Medicine (2)', '', 'inherit', 'open', 'closed', '', 'family-medicine-2-2', '', '', '2026-02-01 11:30:06', '2026-02-01 11:30:06', '', 42, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(394, 1, '2026-02-01 11:32:03', '2026-02-01 11:32:03', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Annual physical exams and preventive screenings\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Primary care for adults and children\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Chronic disease management (diabetes, hypertension, asthma, and more)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Sick visits and urgent medical concerns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Women’s and men’s health services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Lab testing and diagnostic evaluations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medication management and follow-up care\n									</li>\n						</ul>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:32:03', '2026-02-01 11:32:03', '', 42, 'https://mrarif.me/royalhealth/?p=394', 0, 'revision', '', 0),
(390, 1, '2026-02-01 11:30:11', '2026-02-01 11:30:11', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Annual physical exams and preventive screenings\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Primary care for adults and children\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Chronic disease management (diabetes, hypertension, asthma, and more)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Sick visits and urgent medical concerns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Women’s and men’s health services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Lab testing and diagnostic evaluations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medication management and follow-up care\n									</li>\n						</ul>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:30:11', '2026-02-01 11:30:11', '', 42, 'https://mrarif.me/royalhealth/?p=390', 0, 'revision', '', 0),
(388, 1, '2026-02-01 11:30:11', '2026-02-01 11:30:11', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Single Session (90 minutes): $120\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 3 Sessions: $330 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Package of 5 Sessions: $550 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 10 Sessions: $1,000 (Equivalent to $100 per session – best value)\n									</li>\n						</ul>\n							<h6>Call today to schedule your appointment:</h6>										<a href=\"tel:7862387785\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									786-238-7785\n					</a>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:30:11', '2026-02-01 11:30:11', '', 42, 'https://mrarif.me/royalhealth/?p=388', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:30:11', '2026-02-01 11:30:11', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Single Session (90 minutes): $120\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 3 Sessions: $330 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Package of 5 Sessions: $550 (Equivalent to $110 per session)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Package of 10 Sessions: $1,000 (Equivalent to $100 per session – best value)\n									</li>\n						</ul>\n							<h6>Call today to schedule your appointment:</h6>										<a href=\"tel:7862387785\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									786-238-7785\n					</a>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:30:11', '2026-02-01 11:30:11', '', 42, 'https://mrarif.me/royalhealth/?p=389', 0, 'revision', '', 0),
(391, 1, '2026-02-01 11:31:58', '2026-02-01 11:31:58', '', '473380 (1) (1)', '', 'inherit', 'open', 'closed', '', '473380-1-1', '', '', '2026-02-01 11:31:58', '2026-02-01 11:31:58', '', 42, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/473380-1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(392, 1, '2026-02-01 11:32:03', '2026-02-01 11:32:03', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Annual physical exams and preventive screenings\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Primary care for adults and children\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Chronic disease management (diabetes, hypertension, asthma, and more)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Sick visits and urgent medical concerns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Women’s and men’s health services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Lab testing and diagnostic evaluations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medication management and follow-up care\n									</li>\n						</ul>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:32:03', '2026-02-01 11:32:03', '', 42, 'https://mrarif.me/royalhealth/?p=392', 0, 'revision', '', 0),
(393, 1, '2026-02-01 11:32:03', '2026-02-01 11:32:03', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Family-Medicine-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Family  Medicine</h2>		At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages. Our providers focus on preventive health, early diagnosis, and personalized treatment plans to support your long-term well-being. From routine checkups to chronic condition management, we are here to be your trusted primary care partner.			<h6>Family Medicine Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Annual physical exams and preventive screenings\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Primary care for adults and children\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Chronic disease management (diabetes, hypertension, asthma, and more)\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Sick visits and urgent medical concerns\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Women’s and men’s health services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Lab testing and diagnostic evaluations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medication management and follow-up care\n									</li>\n						</ul>', 'Family Medicine', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2026-02-01 11:32:03', '2026-02-01 11:32:03', '', 42, 'https://mrarif.me/royalhealth/?p=393', 0, 'revision', '', 0),
(398, 1, '2026-02-01 11:36:05', '2026-02-01 11:36:05', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Physical Therapy &amp; Rehabilitation   After Car Accidents</h2>		If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.			<h6>Auto Accident &amp; Physical Therapy Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Post-accident evaluations and treatment plans\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Physical therapy for neck, back, and joint injuries\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Pain management and mobility restoration\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Muscle strengthening and injury rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Whiplash and soft tissue injury treatment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Coordination with attorneys and insurance providers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Detailed medical documentation for accident-related cases\n									</li>\n						</ul>', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 11:36:05', '2026-02-01 11:36:05', '', 46, 'https://mrarif.me/royalhealth/?p=398', 0, 'revision', '', 0),
(396, 1, '2026-02-01 11:36:05', '2026-02-01 11:36:05', '', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 11:36:05', '2026-02-01 11:36:05', '', 46, 'https://mrarif.me/royalhealth/?p=396', 0, 'revision', '', 0),
(397, 1, '2026-02-01 11:36:05', '2026-02-01 11:36:05', '', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 11:36:05', '2026-02-01 11:36:05', '', 46, 'https://mrarif.me/royalhealth/?p=397', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(399, 1, '2026-02-01 11:38:43', '2026-02-01 11:38:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Physical Therapy &amp; Rehabilitation   After Car Accidents</h2>		If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.			<h6>Auto Accident &amp; Physical Therapy Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Post-accident evaluations and treatment plans\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Physical therapy for neck, back, and joint injuries\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Pain management and mobility restoration\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Muscle strengthening and injury rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Whiplash and soft tissue injury treatment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Coordination with attorneys and insurance providers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Detailed medical documentation for accident-related cases\n									</li>\n						</ul>', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 11:38:43', '2026-02-01 11:38:43', '', 46, 'https://mrarif.me/royalhealth/?p=399', 0, 'revision', '', 0),
(400, 1, '2026-02-01 11:38:43', '2026-02-01 11:38:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Lymphati-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Physical Therapy &amp; Rehabilitation   After Car Accidents</h2>		If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.			<h6>Auto Accident &amp; Physical Therapy Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Post-accident evaluations and treatment plans\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Physical therapy for neck, back, and joint injuries\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Pain management and mobility restoration\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Muscle strengthening and injury rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Whiplash and soft tissue injury treatment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Coordination with attorneys and insurance providers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Detailed medical documentation for accident-related cases\n									</li>\n						</ul>', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 11:38:43', '2026-02-01 11:38:43', '', 46, 'https://mrarif.me/royalhealth/?p=400', 0, 'revision', '', 0),
(401, 1, '2026-02-01 11:38:43', '2026-02-01 11:38:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Physical Therapy &amp; Rehabilitation   After Car Accidents</h2>		If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy and rehabilitation services to help you recover safely and effectively. We focus on relieving pain, restoring mobility, and improving function so you can return to your daily activities as quickly as possible.			<h6>Auto Accident &amp; Physical Therapy Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										 Post-accident evaluations and treatment plans\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Physical therapy for neck, back, and joint injuries\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Pain management and mobility restoration\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Muscle strengthening and injury rehabilitation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Whiplash and soft tissue injury treatment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Coordination with attorneys and insurance providers\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Detailed medical documentation for accident-related cases\n									</li>\n						</ul>', 'Physical Therapy & Rehabilitation After Car Accidents', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2026-02-01 11:38:43', '2026-02-01 11:38:43', '', 46, 'https://mrarif.me/royalhealth/?p=401', 0, 'revision', '', 0),
(402, 1, '2026-02-01 11:41:56', '2026-02-01 11:41:56', '', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 11:41:56', '2026-02-01 11:41:56', '', 44, 'https://mrarif.me/royalhealth/?p=402', 0, 'revision', '', 0),
(403, 1, '2026-02-01 11:41:57', '2026-02-01 11:41:57', '', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 11:41:57', '2026-02-01 11:41:57', '', 44, 'https://mrarif.me/royalhealth/?p=403', 0, 'revision', '', 0),
(404, 1, '2026-02-01 11:41:57', '2026-02-01 11:41:57', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness &amp; Beauty  Services</h2>		We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.			<h6>Wellness &amp; Beauty Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medical weight management\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Vitamin injections and IV therapy\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Hormone optimization\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Skin rejuvenation treatments\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Anti-aging and aesthetic wellness services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Personalized wellness plans\n									</li>\n						</ul>', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 11:41:57', '2026-02-01 11:41:57', '', 44, 'https://mrarif.me/royalhealth/?p=404', 0, 'revision', '', 0),
(405, 1, '2026-02-01 11:53:08', '2026-02-01 11:53:08', '', 'Wellness & Beauty', '', 'inherit', 'open', 'closed', '', 'wellness-beauty', '', '', '2026-02-01 11:53:08', '2026-02-01 11:53:08', '', 44, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 11:53:13', '2026-02-01 11:53:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness &amp; Beauty  Services</h2>		We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.			<h6>Wellness &amp; Beauty Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medical weight management\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Vitamin injections and IV therapy\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Hormone optimization\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Skin rejuvenation treatments\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Anti-aging and aesthetic wellness services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Personalized wellness plans\n									</li>\n						</ul>', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 11:53:13', '2026-02-01 11:53:13', '', 44, 'https://mrarif.me/royalhealth/?p=406', 0, 'revision', '', 0),
(407, 1, '2026-02-01 11:53:13', '2026-02-01 11:53:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services.jpeg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-300x300.jpeg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-150x150.jpeg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness &amp; Beauty  Services</h2>		We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.			<h6>Wellness &amp; Beauty Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medical weight management\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Vitamin injections and IV therapy\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Hormone optimization\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Skin rejuvenation treatments\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Anti-aging and aesthetic wellness services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Personalized wellness plans\n									</li>\n						</ul>', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 11:53:13', '2026-02-01 11:53:13', '', 44, 'https://mrarif.me/royalhealth/?p=407', 0, 'revision', '', 0),
(408, 1, '2026-02-01 11:53:13', '2026-02-01 11:53:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Wellness-Beauty-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness &amp; Beauty  Services</h2>		We believe feeling your best goes hand in hand with looking your best. Our Wellness & Beauty services are designed to enhance your natural beauty while supporting overall health and confidence. Treatments are performed in a safe, professional medical environment and customized to your individual goals.			<h6>Wellness &amp; Beauty Services Include:</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Medical weight management\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Vitamin injections and IV therapy\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Hormone optimization\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Skin rejuvenation treatments\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Anti-aging and aesthetic wellness services\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Personalized wellness plans\n									</li>\n						</ul>', 'Wellness & Beauty Services', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2026-02-01 11:53:13', '2026-02-01 11:53:13', '', 44, 'https://mrarif.me/royalhealth/?p=408', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 1, '2026-02-01 11:58:16', '2026-02-01 11:58:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 11:58:16', '2026-02-01 11:58:16', '', 14, 'https://mrarif.me/royalhealth/?p=409', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(410, 1, '2026-02-01 11:58:16', '2026-02-01 11:58:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 11:58:16', '2026-02-01 11:58:16', '', 14, 'https://mrarif.me/royalhealth/?p=410', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(411, 1, '2026-02-01 11:58:16', '2026-02-01 11:58:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 11:58:16', '2026-02-01 11:58:16', '', 14, 'https://mrarif.me/royalhealth/?p=411', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(412, 1, '2026-02-01 11:58:33', '2026-02-01 11:58:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 11:58:33', '2026-02-01 11:58:33', '', 14, 'https://mrarif.me/royalhealth/?p=412', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(413, 1, '2026-02-01 11:58:33', '2026-02-01 11:58:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 11:58:33', '2026-02-01 11:58:33', '', 14, 'https://mrarif.me/royalhealth/?p=413', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(414, 1, '2026-02-01 11:58:34', '2026-02-01 11:58:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 11:58:34', '2026-02-01 11:58:34', '', 14, 'https://mrarif.me/royalhealth/?p=414', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(415, 1, '2026-02-01 12:00:18', '2026-02-01 12:00:18', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 12:00:18', '2026-02-01 12:00:18', '', 36, 'https://mrarif.me/royalhealth/?p=415', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:00:18', '2026-02-01 12:00:18', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 12:00:18', '2026-02-01 12:00:18', '', 36, 'https://mrarif.me/royalhealth/?p=416', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:00:18', '2026-02-01 12:00:18', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 12:00:18', '2026-02-01 12:00:18', '', 36, 'https://mrarif.me/royalhealth/?p=417', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(418, 1, '2026-02-01 12:01:01', '2026-02-01 12:01:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:01:01', '2026-02-01 12:01:01', '', 14, 'https://mrarif.me/royalhealth/?p=418', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(419, 1, '2026-02-01 12:01:01', '2026-02-01 12:01:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:01:01', '2026-02-01 12:01:01', '', 14, 'https://mrarif.me/royalhealth/?p=419', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(420, 1, '2026-02-01 12:01:01', '2026-02-01 12:01:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Add Your Heading Text Here</h2>					<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:01:01', '2026-02-01 12:01:01', '', 14, 'https://mrarif.me/royalhealth/?p=420', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(421, 1, '2026-02-01 12:03:20', '2026-02-01 12:03:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Add Your Heading Text Here</h2>					<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:03:20', '2026-02-01 12:03:20', '', 14, 'https://mrarif.me/royalhealth/?p=421', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(422, 1, '2026-02-01 12:03:20', '2026-02-01 12:03:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n									<h2>Add Your Heading Text Here</h2>					<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:03:20', '2026-02-01 12:03:20', '', 14, 'https://mrarif.me/royalhealth/?p=422', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:03:20', '2026-02-01 12:03:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:03:20', '2026-02-01 12:03:20', '', 14, 'https://mrarif.me/royalhealth/?p=423', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:04:00', '2026-02-01 12:04:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:04:00', '2026-02-01 12:04:00', '', 14, 'https://mrarif.me/royalhealth/?p=424', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(425, 1, '2026-02-01 12:04:00', '2026-02-01 12:04:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:04:00', '2026-02-01 12:04:00', '', 14, 'https://mrarif.me/royalhealth/?p=425', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:04:00', '2026-02-01 12:04:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:04:00', '2026-02-01 12:04:00', '', 14, 'https://mrarif.me/royalhealth/?p=426', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(427, 1, '2026-02-01 12:11:15', '2026-02-01 12:11:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:11:15', '2026-02-01 12:11:15', '', 14, 'https://mrarif.me/royalhealth/?p=427', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(428, 1, '2026-02-01 12:11:16', '2026-02-01 12:11:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:11:16', '2026-02-01 12:11:16', '', 14, 'https://mrarif.me/royalhealth/?p=428', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(429, 1, '2026-02-01 12:11:16', '2026-02-01 12:11:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:11:16', '2026-02-01 12:11:16', '', 14, 'https://mrarif.me/royalhealth/?p=429', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(433, 1, '2026-02-01 12:42:26', '2026-02-01 12:42:26', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:42:26', '2026-02-01 12:42:26', '', 14, 'https://mrarif.me/royalhealth/?p=433', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(431, 1, '2026-02-01 12:42:25', '2026-02-01 12:42:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:42:25', '2026-02-01 12:42:25', '', 14, 'https://mrarif.me/royalhealth/?p=431', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(432, 1, '2026-02-01 12:42:25', '2026-02-01 12:42:25', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:42:25', '2026-02-01 12:42:25', '', 14, 'https://mrarif.me/royalhealth/?p=432', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(434, 1, '2026-02-01 12:43:46', '2026-02-01 12:43:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:43:46', '2026-02-01 12:43:46', '', 14, 'https://mrarif.me/royalhealth/?p=434', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(435, 1, '2026-02-01 12:43:46', '2026-02-01 12:43:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:43:46', '2026-02-01 12:43:46', '', 14, 'https://mrarif.me/royalhealth/?p=435', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:43:46', '2026-02-01 12:43:46', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:43:46', '2026-02-01 12:43:46', '', 14, 'https://mrarif.me/royalhealth/?p=436', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(437, 1, '2026-02-01 12:46:18', '2026-02-01 12:46:18', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:46:18', '2026-02-01 12:46:18', '', 14, 'https://mrarif.me/royalhealth/?p=437', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(438, 1, '2026-02-01 12:46:18', '2026-02-01 12:46:18', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:46:18', '2026-02-01 12:46:18', '', 14, 'https://mrarif.me/royalhealth/?p=438', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(439, 1, '2026-02-01 12:46:19', '2026-02-01 12:46:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:46:19', '2026-02-01 12:46:19', '', 14, 'https://mrarif.me/royalhealth/?p=439', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(440, 1, '2026-02-01 12:46:42', '2026-02-01 12:46:42', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:46:42', '2026-02-01 12:46:42', '', 14, 'https://mrarif.me/royalhealth/?p=440', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(441, 1, '2026-02-01 12:46:42', '2026-02-01 12:46:42', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:46:42', '2026-02-01 12:46:42', '', 14, 'https://mrarif.me/royalhealth/?p=441', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(442, 1, '2026-02-01 12:46:43', '2026-02-01 12:46:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:46:43', '2026-02-01 12:46:43', '', 14, 'https://mrarif.me/royalhealth/?p=442', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(443, 1, '2026-02-01 12:47:41', '2026-02-01 12:47:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:47:41', '2026-02-01 12:47:41', '', 14, 'https://mrarif.me/royalhealth/?p=443', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(444, 1, '2026-02-01 12:47:41', '2026-02-01 12:47:41', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:47:41', '2026-02-01 12:47:41', '', 14, 'https://mrarif.me/royalhealth/?p=444', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(445, 1, '2026-02-01 12:47:42', '2026-02-01 12:47:42', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:47:42', '2026-02-01 12:47:42', '', 14, 'https://mrarif.me/royalhealth/?p=445', 0, 'revision', '', 0),
(446, 1, '2026-02-01 12:48:53', '2026-02-01 12:48:53', '', 'Ana Iris Carmona Valdes', '', 'inherit', 'open', 'closed', '', 'ana-iris-carmona-valdes', '', '', '2026-02-01 12:48:53', '2026-02-01 12:48:53', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(452, 1, '2026-02-01 12:52:59', '2026-02-01 12:52:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:52:59', '2026-02-01 12:52:59', '', 14, 'https://mrarif.me/royalhealth/?p=452', 0, 'revision', '', 0),
(448, 1, '2026-02-01 12:51:08', '2026-02-01 12:51:08', '', 'Roman Martínez Faife', '', 'inherit', 'open', 'closed', '', 'roman-martinez-faife', '', '', '2026-02-01 12:51:08', '2026-02-01 12:51:08', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg', 0, 'attachment', 'image/jpeg', 0),
(449, 1, '2026-02-01 12:52:47', '2026-02-01 12:52:47', '', 'Irma Maria Valdes Sepulveda', '', 'inherit', 'open', 'closed', '', 'irma-maria-valdes-sepulveda', '', '', '2026-02-01 12:52:47', '2026-02-01 12:52:47', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(450, 1, '2026-02-01 12:52:58', '2026-02-01 12:52:58', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:52:58', '2026-02-01 12:52:58', '', 14, 'https://mrarif.me/royalhealth/?p=450', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(451, 1, '2026-02-01 12:52:58', '2026-02-01 12:52:58', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:52:58', '2026-02-01 12:52:58', '', 14, 'https://mrarif.me/royalhealth/?p=451', 0, 'revision', '', 0),
(453, 1, '2026-02-01 12:53:23', '2026-02-01 12:53:23', '', 'Irma Maria Valdes Sepulveda (1)', '', 'inherit', 'open', 'closed', '', 'irma-maria-valdes-sepulveda-1', '', '', '2026-02-01 12:53:23', '2026-02-01 12:53:23', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(454, 1, '2026-02-01 12:53:29', '2026-02-01 12:53:29', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:53:29', '2026-02-01 12:53:29', '', 14, 'https://mrarif.me/royalhealth/?p=454', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(455, 1, '2026-02-01 12:53:29', '2026-02-01 12:53:29', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:53:29', '2026-02-01 12:53:29', '', 14, 'https://mrarif.me/royalhealth/?p=455', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:56:19', '2026-02-01 12:56:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:56:19', '2026-02-01 12:56:19', '', 14, 'https://mrarif.me/royalhealth/?p=464', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(456, 1, '2026-02-01 12:53:29', '2026-02-01 12:53:29', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:53:29', '2026-02-01 12:53:29', '', 14, 'https://mrarif.me/royalhealth/?p=456', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:54:00', '2026-02-01 12:54:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:54:00', '2026-02-01 12:54:00', '', 14, 'https://mrarif.me/royalhealth/?p=457', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(458, 1, '2026-02-01 12:54:00', '2026-02-01 12:54:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:54:00', '2026-02-01 12:54:00', '', 14, 'https://mrarif.me/royalhealth/?p=458', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:54:01', '2026-02-01 12:54:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:54:01', '2026-02-01 12:54:01', '', 14, 'https://mrarif.me/royalhealth/?p=459', 0, 'revision', '', 0),
(460, 1, '2026-02-01 12:55:59', '2026-02-01 12:55:59', '', 'Rebeca Barrabeitg Pozo', '', 'inherit', 'open', 'closed', '', 'rebeca-barrabeitg-pozo', '', '', '2026-02-01 12:55:59', '2026-02-01 12:55:59', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(465, 1, '2026-02-01 12:56:35', '2026-02-01 12:56:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:56:35', '2026-02-01 12:56:35', '', 14, 'https://mrarif.me/royalhealth/?p=465', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(462, 1, '2026-02-01 12:56:18', '2026-02-01 12:56:18', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:56:18', '2026-02-01 12:56:18', '', 14, 'https://mrarif.me/royalhealth/?p=462', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(463, 1, '2026-02-01 12:56:18', '2026-02-01 12:56:18', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:56:18', '2026-02-01 12:56:18', '', 14, 'https://mrarif.me/royalhealth/?p=463', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(466, 1, '2026-02-01 12:56:35', '2026-02-01 12:56:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:56:35', '2026-02-01 12:56:35', '', 14, 'https://mrarif.me/royalhealth/?p=466', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(467, 1, '2026-02-01 12:56:35', '2026-02-01 12:56:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:56:35', '2026-02-01 12:56:35', '', 14, 'https://mrarif.me/royalhealth/?p=467', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(468, 1, '2026-02-01 12:58:24', '2026-02-01 12:58:24', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:58:24', '2026-02-01 12:58:24', '', 14, 'https://mrarif.me/royalhealth/?p=468', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:58:24', '2026-02-01 12:58:24', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:58:24', '2026-02-01 12:58:24', '', 14, 'https://mrarif.me/royalhealth/?p=469', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:58:24', '2026-02-01 12:58:24', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:58:24', '2026-02-01 12:58:24', '', 14, 'https://mrarif.me/royalhealth/?p=470', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:59:01', '2026-02-01 12:59:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:59:01', '2026-02-01 12:59:01', '', 14, 'https://mrarif.me/royalhealth/?p=471', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:59:01', '2026-02-01 12:59:01', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:59:01', '2026-02-01 12:59:01', '', 14, 'https://mrarif.me/royalhealth/?p=472', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 12:59:02', '2026-02-01 12:59:02', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 12:59:02', '2026-02-01 12:59:02', '', 14, 'https://mrarif.me/royalhealth/?p=473', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:03:35', '2026-02-01 13:03:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 13:03:35', '2026-02-01 13:03:35', '', 14, 'https://mrarif.me/royalhealth/?p=474', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:03:35', '2026-02-01 13:03:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 13:03:35', '2026-02-01 13:03:35', '', 14, 'https://mrarif.me/royalhealth/?p=475', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:03:36', '2026-02-01 13:03:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 13:03:36', '2026-02-01 13:03:36', '', 14, 'https://mrarif.me/royalhealth/?p=476', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:06:55', '2026-02-01 13:06:55', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 13:06:55', '2026-02-01 13:06:55', '', 36, 'https://mrarif.me/royalhealth/?p=477', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:06:55', '2026-02-01 13:06:55', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 13:06:55', '2026-02-01 13:06:55', '', 36, 'https://mrarif.me/royalhealth/?p=478', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:06:55', '2026-02-01 13:06:55', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness &amp; Beauty services are designed to enhance your natural beauty 					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m176.894 155.168c-12.889 0-25.056-4.906-34.355-13.874-9.525-9.185-14.903-21.527-15.142-34.754-.242-13.229 4.683-25.76 13.869-35.282 9.181-9.525 21.522-14.904 34.751-15.145 13.247-.226 25.758 4.689 35.277 13.866 19.666 18.957 20.237 50.376 1.278 70.036-9.18 9.525-21.521 14.904-34.75 15.145-.31.006-.621.008-.928.008zm.041-84.583c-.221 0-.436.003-.657.006-9.361.172-18.094 3.976-24.586 10.717-6.505 6.74-9.989 15.606-9.819 24.966.17 9.361 3.976 18.097 10.718 24.596 6.737 6.498 15.566 9.946 24.966 9.813 9.36-.169 18.099-3.976 24.592-10.717 13.416-13.914 13.015-36.146-.899-49.562-6.584-6.347-15.198-9.819-24.315-9.819z\"></path><path d=\"m443.924 267.455c-111.193-.116-137.64-.658-144.688-1.19-9.134.291-17.986-3.804-27.054-12.539l-56.871-54.837c-15.328-14.776-15.775-39.267-.996-54.592 7.156-7.424 16.776-11.617 27.087-11.807 8.705-.031 17.013 2.551 23.858 7.703l14.932-8.127 28.727-38.827c9.321-12.599 27.161-15.257 39.757-5.944 8.937 6.612 13.212 17.907 10.899 28.778-.848 3.985-2.511 7.678-4.954 10.979l-32.466 43.883c-2.488 3.359-5.605 6.068-9.27 8.06l-4.446 2.421 17.336 16.719c1.917 1.847 3.636 3.891 5.136 6.111l113.308 1.066c8.303.08 16.074 3.385 21.888 9.31 5.815 5.925 8.97 13.756 8.892 22.056-.018 2.064-.243 4.157-.679 6.202-3.038 14.279-15.792 24.575-30.396 24.575zm-143.546-15.508c7.206.651 89.366.973 143.331 1.029 8.014 0 14.83-5.492 16.448-13.114.232-1.091.356-2.199.361-3.303.04-4.452-1.646-8.634-4.745-11.796-3.105-3.164-7.257-4.929-11.691-4.972l-117.364-1.105c-2.675-.025-5.118-1.521-6.352-3.894-1.227-2.348-2.782-4.446-4.637-6.233l-24.446-23.571c-1.663-1.601-2.461-3.897-2.149-6.182.305-2.285 1.686-4.287 3.711-5.39l13.122-7.141c1.798-.976 3.325-2.307 4.553-3.956l32.46-43.878c1.199-1.62 2.019-3.433 2.432-5.378 1.137-5.337-.968-10.882-5.351-14.129-6.176-4.568-14.926-3.266-19.502 2.919 0 .003-29.677 40.116-29.677 40.116-.628.848-1.431 1.547-2.358 2.053l-20.735 11.284c-2.777 1.508-6.205 1.046-8.479-1.143l-.447-.43c-4.655-4.483-11.035-6.881-17.195-6.762-6.448.116-12.46 2.737-16.928 7.379-9.236 9.578-8.96 24.884.616 34.117l56.872 54.835c6.108 5.883 11.453 8.736 16.572 8.521.532-.024 1.058.024 1.578.124z\"></path><path d=\"m351.668 406.553c-7.811 0-15.232-2.89-21.019-8.219-6.103-5.623-9.649-13.286-9.988-21.578l-2.805-68.374-35.555-43.289c-1.861-2.271-3.382-4.9-4.666-8.049-1.194-2.943-.334-6.32 2.121-8.331 2.466-2.017 5.939-2.19 8.592-.43 3.738 2.48 7.15 3.699 10.452 3.537.52-.033 1.052.026 1.572.125 1.844.161 10.82.452 48.745.702 2.154.014 4.185.983 5.548 2.644l17.817 21.697c4.264 5.183 6.764 11.736 7.036 18.45l3.229 78.769c.108 2.61-.113 5.22-.65 7.754-2.947 13.883-14.921 23.985-29.124 24.565-.435.018-.869.027-1.305.027zm-49.463-140.036 28.377 34.55c1.001 1.216 1.578 2.727 1.641 4.299l2.907 70.797c.181 4.428 2.076 8.521 5.333 11.524 3.258 2.997 7.523 4.581 11.918 4.372 7.59-.308 13.982-5.698 15.554-13.105.289-1.354.401-2.749.346-4.149l-3.23-78.778c-.147-3.583-1.476-7.078-3.756-9.845l-15.661-19.077c-26.042-.179-37.812-.353-43.429-.588z\"></path><path d=\"m261.962 203.861c-3.66 0-6.799-2.766-7.189-6.484-.418-3.977 2.466-7.539 6.448-7.956 1.821-.192 3.569-.738 5.198-1.623l29.101-15.839c3.501-1.915 7.907-.616 9.818 2.898 1.912 3.513.616 7.91-2.896 9.822l-29.1 15.837c-3.308 1.802-6.884 2.916-10.616 3.307-.255.027-.509.038-.764.038z\"></path><path d=\"m282.493 399.18h-30.643c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h30.644c4.028 0 7.308-3.28 7.308-7.31v-39.952c0-31.078-25.282-56.364-56.362-56.364h-113.033c-2.596 0-4.989-1.388-6.277-3.639l-65.838-114.841h-4.084l56.573 107.879c1.855 3.54.486 7.918-3.054 9.773-3.529 1.861-7.918.495-9.774-3.048l-62.126-118.48c-1.177-2.245-1.092-4.941.22-7.11s3.66-3.493 6.194-3.493h20.248c2.597 0 4.989 1.389 6.278 3.639l65.837 114.841h108.834c39.061 0 70.842 31.779 70.842 70.843v39.952c0 12.015-9.773 21.789-21.787 21.789z\"></path><path d=\"m120.407 281.075h-38.048c-3.999 0-7.24-3.241-7.24-7.239 0-3.999 3.241-7.24 7.24-7.24h38.048c3.999 0 7.24 3.241 7.24 7.24 0 3.998-3.241 7.239-7.24 7.239z\"></path><path d=\"m206.323 443.894c-28.647 0-51.951-23.306-51.951-51.954s23.303-51.954 51.951-51.954 51.957 23.305 51.957 51.954c0 28.648-23.308 51.954-51.957 51.954zm0-89.428c-20.661 0-37.472 16.81-37.472 37.475s16.81 37.475 37.472 37.475c20.668 0 37.478-16.81 37.478-37.475s-16.81-37.475-37.478-37.475z\"></path><path d=\"m206.323 412.689c-11.442 0-20.746-9.307-20.746-20.749 0-11.443 9.304-20.75 20.746-20.75 11.443 0 20.753 9.307 20.753 20.75 0 11.442-9.31 20.749-20.753 20.749zm0-27.018c-3.456 0-6.266 2.814-6.266 6.27s2.811 6.27 6.266 6.27c3.462 0 6.273-2.814 6.273-6.27s-2.811-6.27-6.273-6.27z\"></path><path d=\"m397.555 443.894h-250.733c-3.999 0-7.24-3.241-7.24-7.24 0-3.998 3.241-7.239 7.24-7.239h250.734c3.998 0 7.24 3.241 7.24 7.239 0 4-3.242 7.24-7.241 7.24z\"></path><path d=\"m160.402 399.18h-62.636c-3.998 0-7.239-3.241-7.239-7.239 0-3.999 3.241-7.24 7.239-7.24h62.636c3.998 0 7.239 3.241 7.239 7.24 0 3.998-3.24 7.239-7.239 7.239z\"></path><path d=\"m297.041 360.504h-20.045c-1.019 0-2.025-.215-2.958-.63l-21.505-9.621c-2.602-1.165-4.282-3.756-4.282-6.609v-29.406c0-3.999 3.241-7.24 7.24-7.24h37.183c3.999 0 7.239 3.241 7.239 7.24 0 3.998-3.241 7.239-7.239 7.239h-29.943v17.475l15.808 7.073h18.501c3.998 0 7.239 3.241 7.239 7.239.001 3.999-3.239 7.24-7.238 7.24z\"></path><path d=\"m234.739 303.338h-98.483c-1.765 0-3.467-.643-4.785-1.811l-25.47-22.452c-3.003-2.644-3.292-7.217-.645-10.218 2.647-3.006 7.222-3.286 10.215-.642l23.422 20.642h92.046l12.466-17.248c2.342-3.235 6.861-3.971 10.108-1.626 3.241 2.342 3.97 6.869 1.623 10.111l-14.632 20.245c-1.356 1.884-3.54 2.999-5.865 2.999z\"></path></g></svg>				\n									<h6>\n							Physical Therapy &amp; Rehabilitation After Car Accidents						\n					</h6>\n									<p>\n						If you’ve been injured in a motor vehicle accident, our clinic offers specialized physical therapy					</p>\n												<a href=\"https://mrarif.me/royalhealth/physical-therapy-rehabilitation-after-car-accidents/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-02-01 13:06:55', '2026-02-01 13:06:55', '', 36, 'https://mrarif.me/royalhealth/?p=479', 0, 'revision', '', 0),
(483, 1, '2026-02-01 13:35:46', '2026-02-01 13:35:46', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								President							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								APRN', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:35:46', '2026-02-01 13:35:46', '', 34, 'https://mrarif.me/royalhealth/?p=483', 0, 'revision', '', 0),
(481, 1, '2026-02-01 13:35:46', '2026-02-01 13:35:46', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:35:46', '2026-02-01 13:35:46', '', 34, 'https://mrarif.me/royalhealth/?p=481', 0, 'revision', '', 0),
(482, 1, '2026-02-01 13:35:46', '2026-02-01 13:35:46', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:35:46', '2026-02-01 13:35:46', '', 34, 'https://mrarif.me/royalhealth/?p=482', 0, 'revision', '', 0),
(484, 1, '2026-02-01 13:35:55', '2026-02-01 13:35:55', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								President							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								APRN', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:35:55', '2026-02-01 13:35:55', '', 34, 'https://mrarif.me/royalhealth/?p=484', 0, 'revision', '', 0),
(485, 1, '2026-02-01 13:35:55', '2026-02-01 13:35:55', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								President							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								APRN', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:35:55', '2026-02-01 13:35:55', '', 34, 'https://mrarif.me/royalhealth/?p=485', 0, 'revision', '', 0),
(486, 1, '2026-02-01 13:35:56', '2026-02-01 13:35:56', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								President							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								APRN', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:35:56', '2026-02-01 13:35:56', '', 34, 'https://mrarif.me/royalhealth/?p=486', 0, 'revision', '', 0),
(487, 1, '2026-02-01 13:36:07', '2026-02-01 13:36:07', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								President							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								APRN', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:36:07', '2026-02-01 13:36:07', '', 34, 'https://mrarif.me/royalhealth/?p=487', 0, 'revision', '', 0),
(488, 1, '2026-02-01 13:36:07', '2026-02-01 13:36:07', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								Medical Assistant							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								President							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								APRN', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:36:07', '2026-02-01 13:36:07', '', 34, 'https://mrarif.me/royalhealth/?p=488', 0, 'revision', '', 0),
(489, 1, '2026-02-01 13:36:07', '2026-02-01 13:36:07', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-01 13:36:07', '2026-02-01 13:36:07', '', 34, 'https://mrarif.me/royalhealth/?p=489', 0, 'revision', '', 0),
(490, 1, '2026-02-01 13:40:01', '2026-02-01 13:40:01', '', 'Roman Martínez Faife (1)', '', 'inherit', 'open', 'closed', '', 'roman-martinez-faife-1', '', '', '2026-02-01 13:40:01', '2026-02-01 13:40:01', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:40:09', '2026-02-01 13:40:09', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 13:40:09', '2026-02-01 13:40:09', '', 14, 'https://mrarif.me/royalhealth/?p=491', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-01 13:40:09', '2026-02-01 13:40:09', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 13:40:09', '2026-02-01 13:40:09', '', 14, 'https://mrarif.me/royalhealth/?p=492', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(506, 1, '2026-02-02 06:16:54', '2026-02-02 06:16:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:16:54', '2026-02-02 06:16:54', '', 14, 'https://mrarif.me/royalhealth/?p=506', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(493, 1, '2026-02-01 13:40:10', '2026-02-01 13:40:10', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-01 13:40:10', '2026-02-01 13:40:10', '', 14, 'https://mrarif.me/royalhealth/?p=493', 0, 'revision', '', 0),
(494, 1, '2026-02-02 06:04:30', '2026-02-02 06:04:30', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-02 06:04:30', '2026-02-02 06:04:30', '', 38, 'https://mrarif.me/royalhealth/?p=494', 0, 'revision', '', 0),
(495, 1, '2026-02-02 06:04:30', '2026-02-02 06:04:30', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		<p>At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.</p><p>Our Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best. For enhanced mental performance, our Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.</p>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-02 06:04:30', '2026-02-02 06:04:30', '', 38, 'https://mrarif.me/royalhealth/?p=495', 0, 'revision', '', 0),
(496, 1, '2026-02-02 06:04:31', '2026-02-02 06:04:31', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/IV-Therapy-Services-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>IV Therapy Services</h2>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance, and promote cognitive function. Each treatment is carefully formulated to deliver essential nutrients directly into the bloodstream for optimal absorption and results.\n					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Immunity IV Therapy ($195) helps strengthen the immune system, reduce inflammation, support faster recovery, and assist the body in fighting off viruses and bacteria. \n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										The Bright Glow IV Therapy ($220) is designed to promote glowing, radiant skin while supporting healthy hair and nails, helping you look and feel your best.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Brainstorm IV Therapy ($225) supports brain function by boosting memory, improving focus, increasing energy, and supporting learning to help you stay sharp and productive.\n									</li>\n						</ul>', 'IV Therapy Services', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2026-02-02 06:04:31', '2026-02-02 06:04:31', '', 38, 'https://mrarif.me/royalhealth/?p=496', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(497, 1, '2026-02-02 06:08:25', '2026-02-02 06:08:25', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/royalhealth/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3383%20NW%207th%20ST%20Suite%20305%20%26%20306%20Miami%20FL%2033125&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n					aria-label=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n			></iframe>\n							<p>© 2026 Royal Health Medical Center. All Rights Reserved.</p>', 'Elementor Footer #307', '', 'inherit', 'closed', 'closed', '', '307-revision-v1', '', '', '2026-02-02 06:08:25', '2026-02-02 06:08:25', '', 307, 'https://mrarif.me/royalhealth/?p=497', 0, 'revision', '', 0),
(499, 1, '2026-02-02 06:12:03', '2026-02-02 06:12:03', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/royalhealth/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/royalhealthmed\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3383%20NW%207th%20ST%20Suite%20305%20%26%20306%20Miami%20FL%2033125&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n					aria-label=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n			></iframe>\n							<p>© 2026 Royal Health Medical Center. All Rights Reserved.</p>', 'Elementor Footer #307', '', 'inherit', 'closed', 'closed', '', '307-revision-v1', '', '', '2026-02-02 06:12:03', '2026-02-02 06:12:03', '', 307, 'https://mrarif.me/royalhealth/?p=499', 0, 'revision', '', 0),
(500, 1, '2026-02-02 06:12:16', '2026-02-02 06:12:16', '<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/royalhealth/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/royalhealth/index.php/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/royalhealthmed\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3383%20NW%207th%20ST%20Suite%20305%20%26%20306%20Miami%20FL%2033125&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n					aria-label=\"3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125\"\n			></iframe>\n							<p>© 2026 Royal Health Medical Center. All Rights Reserved.</p>', 'Elementor Footer #307', '', 'inherit', 'closed', 'closed', '', '307-revision-v1', '', '', '2026-02-02 06:12:16', '2026-02-02 06:12:16', '', 307, 'https://mrarif.me/royalhealth/?p=500', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(507, 1, '2026-02-02 06:19:11', '2026-02-02 06:19:11', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:19:11', '2026-02-02 06:19:11', '', 14, 'https://mrarif.me/royalhealth/?p=507', 0, 'revision', '', 0),
(502, 1, '2026-02-02 06:15:24', '2026-02-02 06:15:24', '', 'New Project (27)', '', 'inherit', 'open', 'closed', '', 'new-project-27', '', '', '2026-02-02 06:15:24', '2026-02-02 06:15:24', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-27.jpg', 0, 'attachment', 'image/jpeg', 0),
(503, 1, '2026-02-02 06:16:41', '2026-02-02 06:16:41', '', 'New Project (28)', '', 'inherit', 'open', 'closed', '', 'new-project-28', '', '', '2026-02-02 06:16:41', '2026-02-02 06:16:41', '', 14, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:16:53', '2026-02-02 06:16:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:16:53', '2026-02-02 06:16:53', '', 14, 'https://mrarif.me/royalhealth/?p=504', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(505, 1, '2026-02-02 06:16:53', '2026-02-02 06:16:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n									<h2>About Us</h2>															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"2000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30.jpg 2000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-300x150.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1024x512.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-768x384.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/BANNER-30-1536x768.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:16:53', '2026-02-02 06:16:53', '', 14, 'https://mrarif.me/royalhealth/?p=505', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(508, 1, '2026-02-02 06:19:11', '2026-02-02 06:19:11', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:19:11', '2026-02-02 06:19:11', '', 14, 'https://mrarif.me/royalhealth/?p=508', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(509, 1, '2026-02-02 06:19:12', '2026-02-02 06:19:12', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:19:12', '2026-02-02 06:19:12', '', 14, 'https://mrarif.me/royalhealth/?p=509', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(510, 1, '2026-02-02 06:21:15', '2026-02-02 06:21:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:21:15', '2026-02-02 06:21:15', '', 14, 'https://mrarif.me/royalhealth/?p=510', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:21:15', '2026-02-02 06:21:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:21:15', '2026-02-02 06:21:15', '', 14, 'https://mrarif.me/royalhealth/?p=511', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(512, 1, '2026-02-02 06:21:15', '2026-02-02 06:21:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:21:15', '2026-02-02 06:21:15', '', 14, 'https://mrarif.me/royalhealth/?p=512', 0, 'revision', '', 0),
(513, 1, '2026-02-02 06:23:17', '2026-02-02 06:23:17', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-02 06:23:17', '2026-02-02 06:23:17', '', 86, 'https://mrarif.me/royalhealth/?p=513', 0, 'revision', '', 0),
(514, 1, '2026-02-02 06:23:56', '2026-02-02 06:23:56', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-02 06:23:56', '2026-02-02 06:23:56', '', 86, 'https://mrarif.me/royalhealth/?p=514', 0, 'revision', '', 0),
(515, 1, '2026-02-02 06:24:20', '2026-02-02 06:24:20', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-02 06:24:20', '2026-02-02 06:24:20', '', 86, 'https://mrarif.me/royalhealth/?p=515', 0, 'revision', '', 0),
(516, 1, '2026-02-02 06:24:33', '2026-02-02 06:24:33', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-02 06:24:33', '2026-02-02 06:24:33', '', 86, 'https://mrarif.me/royalhealth/?p=516', 0, 'revision', '', 0),
(517, 1, '2026-02-02 06:24:51', '2026-02-02 06:24:51', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-02 06:24:51', '2026-02-02 06:24:51', '', 86, 'https://mrarif.me/royalhealth/?p=517', 0, 'revision', '', 0),
(518, 1, '2026-02-02 06:25:27', '2026-02-02 06:25:27', '<a href=\"https://mrarif.me/royalhealth/\">\n							<img width=\"798\" height=\"415\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9.png 798w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-300x156.png 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/logo-9-768x399.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" />								</a>\n									<h6>\n						<a href=\"tel:7862387785\" >\n							Call Us						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>', 'Elementor Header #86', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2026-02-02 06:25:27', '2026-02-02 06:25:27', '', 86, 'https://mrarif.me/royalhealth/?p=518', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(519, 1, '2026-02-02 06:27:14', '2026-02-02 06:27:14', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:27:14', '2026-02-02 06:27:14', '', 14, 'https://mrarif.me/royalhealth/?p=519', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:27:15', '2026-02-02 06:27:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:27:15', '2026-02-02 06:27:15', '', 14, 'https://mrarif.me/royalhealth/?p=520', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:27:15', '2026-02-02 06:27:15', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:27:15', '2026-02-02 06:27:15', '', 14, 'https://mrarif.me/royalhealth/?p=521', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:28:05', '2026-02-02 06:28:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:28:05', '2026-02-02 06:28:05', '', 14, 'https://mrarif.me/royalhealth/?p=522', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(523, 1, '2026-02-02 06:28:05', '2026-02-02 06:28:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:28:05', '2026-02-02 06:28:05', '', 14, 'https://mrarif.me/royalhealth/?p=523', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:28:05', '2026-02-02 06:28:05', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:28:05', '2026-02-02 06:28:05', '', 14, 'https://mrarif.me/royalhealth/?p=524', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(525, 1, '2026-02-02 06:28:35', '2026-02-02 06:28:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:28:35', '2026-02-02 06:28:35', '', 14, 'https://mrarif.me/royalhealth/?p=525', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(526, 1, '2026-02-02 06:28:36', '2026-02-02 06:28:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:28:36', '2026-02-02 06:28:36', '', 14, 'https://mrarif.me/royalhealth/?p=526', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(527, 1, '2026-02-02 06:28:36', '2026-02-02 06:28:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:28:36', '2026-02-02 06:28:36', '', 14, 'https://mrarif.me/royalhealth/?p=527', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(528, 1, '2026-02-02 06:29:06', '2026-02-02 06:29:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:29:06', '2026-02-02 06:29:06', '', 14, 'https://mrarif.me/royalhealth/?p=528', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:29:06', '2026-02-02 06:29:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:29:06', '2026-02-02 06:29:06', '', 14, 'https://mrarif.me/royalhealth/?p=529', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:29:07', '2026-02-02 06:29:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:29:07', '2026-02-02 06:29:07', '', 14, 'https://mrarif.me/royalhealth/?p=530', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:31:51', '2026-02-02 06:31:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:31:51', '2026-02-02 06:31:51', '', 14, 'https://mrarif.me/royalhealth/?p=531', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:31:51', '2026-02-02 06:31:51', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:31:51', '2026-02-02 06:31:51', '', 14, 'https://mrarif.me/royalhealth/?p=532', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(533, 1, '2026-02-02 06:31:52', '2026-02-02 06:31:52', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:31:52', '2026-02-02 06:31:52', '', 14, 'https://mrarif.me/royalhealth/?p=533', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(534, 1, '2026-02-02 06:33:19', '2026-02-02 06:33:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:33:19', '2026-02-02 06:33:19', '', 14, 'https://mrarif.me/royalhealth/?p=534', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:33:19', '2026-02-02 06:33:19', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:33:19', '2026-02-02 06:33:19', '', 14, 'https://mrarif.me/royalhealth/?p=535', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(536, 1, '2026-02-02 06:33:20', '2026-02-02 06:33:20', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:33:20', '2026-02-02 06:33:20', '', 14, 'https://mrarif.me/royalhealth/?p=536', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(537, 1, '2026-02-02 06:35:59', '2026-02-02 06:35:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:35:59', '2026-02-02 06:35:59', '', 14, 'https://mrarif.me/royalhealth/?p=537', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(538, 1, '2026-02-02 06:35:59', '2026-02-02 06:35:59', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:35:59', '2026-02-02 06:35:59', '', 14, 'https://mrarif.me/royalhealth/?p=538', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(569, 1, '2026-02-02 06:59:11', '2026-02-02 06:59:11', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:59:11', '2026-02-02 06:59:11', '', 14, 'https://mrarif.me/royalhealth/?p=569', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(539, 1, '2026-02-02 06:36:00', '2026-02-02 06:36:00', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:36:00', '2026-02-02 06:36:00', '', 14, 'https://mrarif.me/royalhealth/?p=539', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(540, 1, '2026-02-02 06:41:17', '2026-02-02 06:41:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:41:17', '2026-02-02 06:41:17', '', 14, 'https://mrarif.me/royalhealth/?p=540', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(541, 1, '2026-02-02 06:41:17', '2026-02-02 06:41:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:41:17', '2026-02-02 06:41:17', '', 14, 'https://mrarif.me/royalhealth/?p=541', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(542, 1, '2026-02-02 06:41:18', '2026-02-02 06:41:18', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:41:18', '2026-02-02 06:41:18', '', 14, 'https://mrarif.me/royalhealth/?p=542', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(543, 1, '2026-02-02 06:41:44', '2026-02-02 06:41:44', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:41:44', '2026-02-02 06:41:44', '', 14, 'https://mrarif.me/royalhealth/?p=543', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(544, 1, '2026-02-02 06:41:44', '2026-02-02 06:41:44', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:41:44', '2026-02-02 06:41:44', '', 14, 'https://mrarif.me/royalhealth/?p=544', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(545, 1, '2026-02-02 06:41:45', '2026-02-02 06:41:45', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:41:45', '2026-02-02 06:41:45', '', 14, 'https://mrarif.me/royalhealth/?p=545', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:43:21', '2026-02-02 06:43:21', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:43:21', '2026-02-02 06:43:21', '', 14, 'https://mrarif.me/royalhealth/?p=546', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:43:21', '2026-02-02 06:43:21', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:43:21', '2026-02-02 06:43:21', '', 14, 'https://mrarif.me/royalhealth/?p=547', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:43:22', '2026-02-02 06:43:22', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:43:22', '2026-02-02 06:43:22', '', 14, 'https://mrarif.me/royalhealth/?p=548', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(549, 1, '2026-02-02 06:45:08', '2026-02-02 06:45:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:45:08', '2026-02-02 06:45:08', '', 14, 'https://mrarif.me/royalhealth/?p=549', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:45:08', '2026-02-02 06:45:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:45:08', '2026-02-02 06:45:08', '', 14, 'https://mrarif.me/royalhealth/?p=550', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(551, 1, '2026-02-02 06:45:09', '2026-02-02 06:45:09', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:45:09', '2026-02-02 06:45:09', '', 14, 'https://mrarif.me/royalhealth/?p=551', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(552, 1, '2026-02-02 06:49:27', '2026-02-02 06:49:27', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:49:27', '2026-02-02 06:49:27', '', 14, 'https://mrarif.me/royalhealth/?p=552', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(553, 1, '2026-02-02 06:49:28', '2026-02-02 06:49:28', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:49:28', '2026-02-02 06:49:28', '', 14, 'https://mrarif.me/royalhealth/?p=553', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(554, 1, '2026-02-02 06:49:28', '2026-02-02 06:49:28', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:49:28', '2026-02-02 06:49:28', '', 14, 'https://mrarif.me/royalhealth/?p=554', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(555, 1, '2026-02-02 06:50:53', '2026-02-02 06:50:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:50:53', '2026-02-02 06:50:53', '', 14, 'https://mrarif.me/royalhealth/?p=555', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(556, 1, '2026-02-02 06:50:53', '2026-02-02 06:50:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:50:53', '2026-02-02 06:50:53', '', 14, 'https://mrarif.me/royalhealth/?p=556', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(557, 1, '2026-02-02 06:50:54', '2026-02-02 06:50:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:50:54', '2026-02-02 06:50:54', '', 14, 'https://mrarif.me/royalhealth/?p=557', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(558, 1, '2026-02-02 06:51:43', '2026-02-02 06:51:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:51:43', '2026-02-02 06:51:43', '', 14, 'https://mrarif.me/royalhealth/?p=558', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(559, 1, '2026-02-02 06:51:43', '2026-02-02 06:51:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:51:43', '2026-02-02 06:51:43', '', 14, 'https://mrarif.me/royalhealth/?p=559', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:51:44', '2026-02-02 06:51:44', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:51:44', '2026-02-02 06:51:44', '', 14, 'https://mrarif.me/royalhealth/?p=560', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(561, 1, '2026-02-02 06:55:06', '2026-02-02 06:55:06', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:55:06', '2026-02-02 06:55:06', '', 14, 'https://mrarif.me/royalhealth/?p=561', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:55:07', '2026-02-02 06:55:07', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:55:07', '2026-02-02 06:55:07', '', 14, 'https://mrarif.me/royalhealth/?p=562', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(563, 1, '2026-02-02 06:55:08', '2026-02-02 06:55:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:55:08', '2026-02-02 06:55:08', '', 14, 'https://mrarif.me/royalhealth/?p=563', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:56:53', '2026-02-02 06:56:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:56:53', '2026-02-02 06:56:53', '', 14, 'https://mrarif.me/royalhealth/?p=564', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:56:53', '2026-02-02 06:56:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:56:53', '2026-02-02 06:56:53', '', 14, 'https://mrarif.me/royalhealth/?p=565', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(566, 1, '2026-02-02 06:56:54', '2026-02-02 06:56:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:56:54', '2026-02-02 06:56:54', '', 14, 'https://mrarif.me/royalhealth/?p=566', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:59:10', '2026-02-02 06:59:10', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:59:10', '2026-02-02 06:59:10', '', 14, 'https://mrarif.me/royalhealth/?p=567', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 06:59:10', '2026-02-02 06:59:10', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 06:59:10', '2026-02-02 06:59:10', '', 14, 'https://mrarif.me/royalhealth/?p=568', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:00:35', '2026-02-02 07:00:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:00:35', '2026-02-02 07:00:35', '', 14, 'https://mrarif.me/royalhealth/?p=570', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:00:35', '2026-02-02 07:00:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:00:35', '2026-02-02 07:00:35', '', 14, 'https://mrarif.me/royalhealth/?p=571', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:00:36', '2026-02-02 07:00:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:00:36', '2026-02-02 07:00:36', '', 14, 'https://mrarif.me/royalhealth/?p=572', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:02:53', '2026-02-02 07:02:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:02:53', '2026-02-02 07:02:53', '', 14, 'https://mrarif.me/royalhealth/?p=573', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:02:53', '2026-02-02 07:02:53', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:02:53', '2026-02-02 07:02:53', '', 14, 'https://mrarif.me/royalhealth/?p=574', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:02:54', '2026-02-02 07:02:54', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:02:54', '2026-02-02 07:02:54', '', 14, 'https://mrarif.me/royalhealth/?p=575', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(576, 1, '2026-02-02 07:05:35', '2026-02-02 07:05:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:05:35', '2026-02-02 07:05:35', '', 14, 'https://mrarif.me/royalhealth/?p=576', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:05:35', '2026-02-02 07:05:35', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:05:35', '2026-02-02 07:05:35', '', 14, 'https://mrarif.me/royalhealth/?p=577', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(578, 1, '2026-02-02 07:05:36', '2026-02-02 07:05:36', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:05:36', '2026-02-02 07:05:36', '', 14, 'https://mrarif.me/royalhealth/?p=578', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(579, 1, '2026-02-02 07:12:08', '2026-02-02 07:12:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:12:08', '2026-02-02 07:12:08', '', 14, 'https://mrarif.me/royalhealth/?p=579', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:12:08', '2026-02-02 07:12:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:12:08', '2026-02-02 07:12:08', '', 14, 'https://mrarif.me/royalhealth/?p=580', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(581, 1, '2026-02-02 07:12:08', '2026-02-02 07:12:08', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:12:08', '2026-02-02 07:12:08', '', 14, 'https://mrarif.me/royalhealth/?p=581', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:12:55', '2026-02-02 07:12:55', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:12:55', '2026-02-02 07:12:55', '', 14, 'https://mrarif.me/royalhealth/?p=582', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:12:55', '2026-02-02 07:12:55', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:12:55', '2026-02-02 07:12:55', '', 14, 'https://mrarif.me/royalhealth/?p=583', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:12:55', '2026-02-02 07:12:55', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:12:55', '2026-02-02 07:12:55', '', 14, 'https://mrarif.me/royalhealth/?p=584', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:13:33', '2026-02-02 07:13:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:13:33', '2026-02-02 07:13:33', '', 14, 'https://mrarif.me/royalhealth/?p=585', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:13:33', '2026-02-02 07:13:33', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:13:33', '2026-02-02 07:13:33', '', 14, 'https://mrarif.me/royalhealth/?p=586', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(587, 1, '2026-02-02 07:13:34', '2026-02-02 07:13:34', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:13:34', '2026-02-02 07:13:34', '', 14, 'https://mrarif.me/royalhealth/?p=587', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:14:09', '2026-02-02 07:14:09', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:14:09', '2026-02-02 07:14:09', '', 14, 'https://mrarif.me/royalhealth/?p=588', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:14:09', '2026-02-02 07:14:09', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:14:09', '2026-02-02 07:14:09', '', 14, 'https://mrarif.me/royalhealth/?p=589', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:14:10', '2026-02-02 07:14:10', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:14:10', '2026-02-02 07:14:10', '', 14, 'https://mrarif.me/royalhealth/?p=590', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:16:31', '2026-02-02 07:16:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:16:31', '2026-02-02 07:16:31', '', 14, 'https://mrarif.me/royalhealth/?p=591', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:16:31', '2026-02-02 07:16:31', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:16:31', '2026-02-02 07:16:31', '', 14, 'https://mrarif.me/royalhealth/?p=592', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:16:32', '2026-02-02 07:16:32', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:16:32', '2026-02-02 07:16:32', '', 14, 'https://mrarif.me/royalhealth/?p=593', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:17:43', '2026-02-02 07:17:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:17:43', '2026-02-02 07:17:43', '', 14, 'https://mrarif.me/royalhealth/?p=594', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:17:43', '2026-02-02 07:17:43', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:17:43', '2026-02-02 07:17:43', '', 14, 'https://mrarif.me/royalhealth/?p=595', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 07:17:44', '2026-02-02 07:17:44', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 07:17:44', '2026-02-02 07:17:44', '', 14, 'https://mrarif.me/royalhealth/?p=596', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 18:40:57', '2026-02-02 18:40:57', '', '4D7E3506-FB8B-4CFD-AE33-A08803D19BCA', '', 'inherit', 'open', 'closed', '', '4d7e3506-fb8b-4cfd-ae33-a08803d19bca', '', '', '2026-02-02 18:40:57', '2026-02-02 18:40:57', '', 34, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/4D7E3506-FB8B-4CFD-AE33-A08803D19BCA.png', 0, 'attachment', 'image/png', 0),
(601, 1, '2026-02-02 18:43:47', '2026-02-02 18:43:47', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Yermina Dumas Nico					</h6>\n								<p>Phlebotomist</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-02 18:43:47', '2026-02-02 18:43:47', '', 34, 'https://mrarif.me/royalhealth/?p=601', 0, 'revision', '', 0),
(599, 1, '2026-02-02 18:43:47', '2026-02-02 18:43:47', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-02 18:43:47', '2026-02-02 18:43:47', '', 34, 'https://mrarif.me/royalhealth/?p=599', 0, 'revision', '', 0),
(600, 1, '2026-02-02 18:43:47', '2026-02-02 18:43:47', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-02 18:43:47', '2026-02-02 18:43:47', '', 34, 'https://mrarif.me/royalhealth/?p=600', 0, 'revision', '', 0),
(602, 1, '2026-02-02 18:51:36', '2026-02-02 18:51:36', '', 'Untitled-5871', '', 'inherit', 'open', 'closed', '', 'untitled-5871', '', '', '2026-02-02 18:51:36', '2026-02-02 18:51:36', '', 34, 'https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg', 0, 'attachment', 'image/jpeg', 0),
(603, 1, '2026-02-02 18:51:44', '2026-02-02 18:51:44', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Yermina Dumas Nico					</h6>\n								<p>Phlebotomist</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-02 18:51:44', '2026-02-02 18:51:44', '', 34, 'https://mrarif.me/royalhealth/?p=603', 0, 'revision', '', 0),
(604, 1, '2026-02-02 18:51:44', '2026-02-02 18:51:44', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Yermina Dumas Nico					</h6>\n								<p>Phlebotomist</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-02 18:51:44', '2026-02-02 18:51:44', '', 34, 'https://mrarif.me/royalhealth/?p=604', 0, 'revision', '', 0),
(605, 1, '2026-02-02 18:51:44', '2026-02-02 18:51:44', '<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-1.jpg\" alt=\"Team\">\n					<h6>\n						Naidelmi Gonzalez Ferrer					</h6>\n								<p>Office Manager</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"Ana Iris Carmona Valdes\">\n					<h6>\n						Ana Iris Carmona Valdes					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife.jpg\" alt=\"Roman Martínez Faife\">\n					<h6>\n						Roman Martínez Faife					</h6>\n								<p>Medical Assistant</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"Irma Maria Valdes Sepulveda (1)\">\n					<h6>\n						Irma Maria Valdes Sepulveda					</h6>\n								<p>President</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"Rebeca Barrabeitg Pozo\">\n					<h6>\n						Rebeca BARRABEITG POZO					</h6>\n								<p>APRN</p>							\n																			<img src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg\" alt=\"Untitled-5871\">\n					<h6>\n						Yermina Dumas Nico					</h6>\n								<p>Phlebotomist</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '34-revision-v1', '', '', '2026-02-02 18:51:44', '2026-02-02 18:51:44', '', 34, 'https://mrarif.me/royalhealth/?p=605', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 18:55:16', '2026-02-02 18:55:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 18:55:16', '2026-02-02 18:55:16', '', 14, 'https://mrarif.me/royalhealth/?p=606', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 18:55:16', '2026-02-02 18:55:16', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 18:55:16', '2026-02-02 18:55:16', '', 14, 'https://mrarif.me/royalhealth/?p=607', 0, 'revision', '', 0);
INSERT INTO `wpr_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-02-02 18:55:17', '2026-02-02 18:55:17', '<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n									<h6>Welcome to</h6>					<h1>Royal Health Medical  Center</h1>		At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity, improve radiance,								<a href=\"https://mrarif.me/royalhealth/services/\">\n									Learn More\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9.jpg 667w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/about-9-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																										<img width=\"791\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1.jpg 791w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-237x300.jpg 237w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/services-2-1-768x971.jpg 768w\" sizes=\"(max-width: 791px) 100vw, 791px\" />																										<img width=\"1000\" height=\"648\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-300x194.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Primary-Care-768x498.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Comprehensive Care Under   One Roof</h2>		Our clinic combines medical care, wellness, beauty, and rehabilitation services in one convenient location. We take a patient-centered approach, focusing on your health, recovery, and confidence—every step of the way.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m412 64h-68v-8c0-4.418-3.582-8-8-8h-40.805c-4.42-21.647-25.552-35.612-47.199-31.192-15.708 3.208-27.984 15.484-31.191 31.192h-40.805c-4.418 0-8 3.582-8 8v8h-68c-17.665.02-31.98 14.335-32 32v368c.02 17.665 14.335 31.98 32 32h312c17.665-.02 31.98-14.335 32-32v-368c-.02-17.665-14.335-31.98-32-32zm-228 0h40c4.418 0 8-3.582 8-8 0-13.255 10.745-24 24-24s24 10.745 24 24c0 4.418 3.582 8 8 8h40v32h-144zm244 400c-.009 8.833-7.167 15.991-16 16h-312c-8.833-.009-15.991-7.167-16-16v-368c.009-8.833 7.167-15.991 16-16h68v24c0 4.418 3.582 8 8 8h160c4.418 0 8-3.582 8-8v-24h68c8.833.009 15.991 7.167 16 16z\"></path><path d=\"m295.902 424.539h.008.004 41.729c10.173 11.43 22.111 21.156 35.36 28.809.576.199 1.483.435 2.61.412.974-.02 1.767-.226 2.304-.412 6.269-1.707 34.836-24.997 39.082-34.102 6.516-14.017.454-30.663-13.55-37.207-9.109-4.239-19.792-3.273-27.993 2.531-12.626-8.929-30.099-5.932-39.028 6.693-3.563 5.037-5.362 11.111-5.117 17.276h-28.576l-20.117-125.735c-.69-3.723-3.856-6.492-7.578-6.671-3.58-.172-6.894 2.092-8.064 5.539l-24.918 89.214h-25.862l-7.024-51.957c-.654-3.344-3.244-5.95-6.48-6.551-3.606-.67-7.326 1.277-8.921 4.756l-36.888 96.275-6.402-20.492c-.192-.674-.8-2.467-2.56-3.895-2.109-1.711-4.438-1.734-5.076-1.719h-42.468c-4.418 0-8 3.582-8 8s3.582 8 8 8h36.585l11.52 36.856c.935 3.239 3.784 5.555 7.083 5.78 3.501.239 6.799-1.925 8.015-5.298l33.92-88.534 3.766 27.854c.07.639.397 2.917 2.339 4.779 2.26 2.167 5.031 2.163 5.574 2.151h38.917c.766-.043 2.889-.261 4.902-1.85 1.846-1.457 2.576-3.257 2.83-3.997l16.734-59.866 15.456 96.627c.131.729.593 2.751 2.372 4.462 2.205 2.121 4.871 2.257 5.512 2.272zm106.617-12.1c-8.032 9.101-17.117 17.216-27.062 24.175-9.931-6.951-19.007-15.05-27.04-24.129-2.803-6-.212-13.137 5.789-15.941 5.204-2.431 11.401-.831 14.778 3.816 2.861 3.576 8.079 4.156 11.655 1.295.478-.382.912-.817 1.295-1.295 3.892-5.358 11.391-6.546 16.749-2.653 4.632 3.365 6.239 9.536 3.836 14.733z\"></path><path d=\"m115.274 220.828h24v24c0 4.418 3.582 8 8 8h32c4.418 0 8-3.582 8-8v-24h24c4.418 0 8-3.582 8-8v-32c0-4.418-3.582-8-8-8h-24v-24c0-4.418-3.582-8-8-8h-32c-4.418 0-8 3.582-8 8v24h-24c-4.418 0-8 3.582-8 8v32c0 4.418 3.581 8 8 8zm8-32h24c4.418 0 8-3.582 8-8v-24h16v24c0 4.418 3.582 8 8 8h24v16h-24c-4.418 0-8 3.582-8 8v24h-16v-24c0-4.418-3.582-8-8-8h-24z\"></path><path d=\"m276.72 164.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 204.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path><path d=\"m276.72 244.828h120c4.418 0 8-3.582 8-8s-3.582-8-8-8h-120c-4.418 0-8 3.582-8 8s3.582 8 8 8z\"></path></svg>				\n									<h6>\n							Schedule an Appointment						\n					</h6>\n									<p>\n						Contact us today to schedule an appointment and begin your journey to better health, wellness, and recovery.					</p>\n												<a href=\"https://mrarif.me/royalhealth/contact/\">\n									Contact us today\n					</a>\n																			<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																										<img width=\"1555\" height=\"850\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28.jpg 1555w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-300x164.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1024x560.jpg 1024w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-768x420.jpg 768w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/New-Project-28-1536x840.jpg 1536w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 100 100\" data-name=\"Layer 1\"><path d=\"m94.49 66.31c-2.08-3.7-7.57-13.81-8.01-16.19-.85-4.55-3.24-7.92-6.58-9.54v-34.57c0-.55-.45-1-1-1s-1 .45-1 1v33.83c-.78-.2-1.6-.33-2.46-.35-.55-.03-1.01.42-1.03.97s.42 1.01.97 1.03c5.52.17 8.34 4.76 9.13 9 .51 2.75 5.88 12.57 7.7 15.85-1.48.57-2.89.61-4.2.12-2.07-.76-3.45-2.67-4.01-4.07-2.09-5.25-3.21-7.26-8.47-10.88-.46-.31-1.08-.2-1.39.26-.31.45-.2 1.08.25 1.39 3.2 2.21 4.68 3.63 5.94 5.94v26.48c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-18.86c0-.55-.45-1-1-1s-1 .45-1 1v24.07c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-24.07c0-.55-.45-1-1-1s-1 .45-1 1v20.88c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18v-20.88c0-.55-.45-1-1-1s-1 .45-1 1v14.95c0 1.06-.86 1.92-1.92 1.92s-1.92-.86-1.92-1.92v-29.84c-.08-5.42.35-9.62 6.4-10.36.55-.07.94-.57.87-1.11-.07-.55-.56-.94-1.11-.87-1.11.14-2.06.39-2.9.72v-14.31h2.72c.48 2.83 2.94 5 5.91 5 3.31 0 6-2.69 6-6s-2.69-6-6-6c-2.97 0-5.43 2.17-5.91 5h-2.72v-17.89c0-.55-.45-1-1-1s-1 .45-1 1v17.9h-3.3c-4.69 0-8.5 3.81-8.5 8.5v57.39c0 1.76-1.43 3.19-3.18 3.19s-3.19-1.43-3.19-3.19v-1.41c0-5.13-4.17-9.3-9.3-9.3-3.66 0-6.64-2.98-6.64-6.64v-15.08h5.22v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h.45c2.65 0 4.81-2.16 4.81-4.81v-36.84c0-2.65-2.16-4.81-4.81-4.81h-6.32v-2.55c0-1.84-1.5-3.34-3.34-3.34h-7.12c-1.84 0-3.34 1.5-3.34 3.34v2.55h-6.32c-2.65 0-4.81 2.16-4.81 4.81v36.86c0 2.65 2.16 4.81 4.81 4.81h.45v5.46h-1.24c-.55 0-1 .45-1 1v5.02c0 .55.45 1 1 1h9.02c.55 0 1-.45 1-1v-5.02c0-.55-.45-1-1-1h-1.24v-5.46h5.22v15.08c0 4.76 3.88 8.64 8.64 8.64 4.02 0 7.3 3.27 7.3 7.3v1.41c0 2.86 2.33 5.19 5.19 5.19s5.18-2.33 5.18-5.19v-57.39c0-3.58 2.92-6.5 6.5-6.5h3.3v15.44s0 0 0 0c-3.36 2.64-3.31 7.36-3.27 10.51v29.81c0 2.16 1.77 3.92 3.93 3.92.7 0 1.35-.2 1.92-.52v2.53c0 2.31 1.88 4.18 4.18 4.18.82 0 1.57-.24 2.22-.65.18 2.14 1.96 3.84 4.15 3.84 2.31 0 4.18-1.88 4.18-4.18v-1.66c.64.39 1.38.63 2.18.63 2.31 0 4.18-1.88 4.18-4.18v-22.02c.83 1.79 2.5 3.86 4.98 4.78.83.31 1.68.46 2.56.46 1.37 0 2.79-.37 4.2-1.11.24-.13.42-.34.49-.6.08-.26.04-.54-.09-.77zm-25.21-45.4c2.21 0 4 1.79 4 4s-1.79 4-4 4c-1.86 0-3.41-1.28-3.86-3h3.86c.55 0 1-.45 1-1s-.45-1-1-1h-3.86c.45-1.72 2-3 3.86-3zm-32.71 46.95h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55zm-15.68-54.48c0-.74.6-1.34 1.34-1.34h7.12c.74 0 1.34.6 1.34 1.34v2.55h-9.81v-2.55zm-11.12 44.21v-36.85c0-1.55 1.26-2.81 2.81-2.81h26.45c1.55 0 2.81 1.26 2.81 2.81v36.86c0 1.55-1.26 2.81-2.81 2.81h-26.46c-1.55 0-2.81-1.26-2.81-2.81zm10.04 15.29h-7.02v-3.02h7.02zm-2.24-5.02h-2.55v-5.46h2.55z\"></path><path d=\"m14.72 37.61h5.37v5.37c0 .55.45 1 1 1h4.94c.55 0 1-.45 1-1v-5.37h5.37c.55 0 1-.45 1-1v-4.94c0-.55-.45-1-1-1h-5.37v-5.37c0-.55-.45-1-1-1h-4.94c-.55 0-1 .45-1 1v5.37h-5.37c-.55 0-1 .45-1 1v4.94c0 .55.45 1 1 1zm1-4.94h5.37c.55 0 1-.45 1-1v-5.37h2.94v5.37c0 .55.45 1 1 1h5.37v2.94h-5.37c-.55 0-1 .45-1 1v5.37h-2.94v-5.37c0-.55-.45-1-1-1h-5.37z\"></path></svg>				\n									<h6>\n							IV Therapy Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, our IV therapy services are designed to support overall wellness, enhance immunity,. 					</p>\n												<a href=\"https://mrarif.me/royalhealth/iv-therapy-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 506.248 506.248\" style=\"enable-background:new 0 0 506.248 506.248;\" xml:space=\"preserve\"><g>	<g>		<g>			<path d=\"M253.12,189.124c-35.288,0-64,21.528-64,48s28.712,48,64,48c35.288,0,64-21.528,64-48S288.408,189.124,253.12,189.124z     M253.12,269.124c-26.016,0-48-14.656-48-32s21.984-32,48-32s48,14.656,48,32S279.136,269.124,253.12,269.124z\"></path>			<path d=\"M253.12,301.124c-30.872,0-56,19.744-56,44c0,24.256,25.128,44,56,44s56-19.744,56-44    C309.12,320.868,283.992,301.124,253.12,301.124z M253.12,373.124c-21.68,0-40-12.824-40-28c0-15.176,18.32-28,40-28    s40,12.824,40,28C293.12,360.3,274.8,373.124,253.12,373.124z\"></path>			<path d=\"M253.12,405.124c-26.472,0-48,17.944-48,40c0,22.056,21.528,40,48,40s48-17.944,48-40    C301.12,423.068,279.592,405.124,253.12,405.124z M253.12,469.124c-17.648,0-32-10.768-32-24s14.352-24,32-24s32,10.768,32,24    S270.768,469.124,253.12,469.124z\"></path>			<path d=\"M495.992,230.972c-48.936,40.792-90.872,138.656-90.872,190.152v80h16v-80c0-47.136,40.08-140.32,85.128-177.848    L495.992,230.972z\"></path>			<path d=\"M497.544,109.972l-142.312,71.152h-13.128l-24.984-6.248v-10.392l63.904-5.328c18-1.496,32.096-16.816,32.096-34.88    c0-5.384-0.664-10.776-1.976-16.04l-4.896-19.584l16.936-11.288l77.144,7.712l1.592-15.92l-76.504-7.648L405.12,34.46V5.124h-16    v34.664l20.52,27.368l-21.648,14.44l7.624,30.512c0.992,4,1.504,8.096,1.504,12.168c0,9.808-7.648,18.128-17.424,18.936    l-78.576,6.552v37.608l38.064,9.504l19.824,0.248l145.688-72.848L497.544,109.972z\"></path>			<path d=\"M10.248,230.972L0,243.276c45.04,37.528,85.12,130.712,85.12,177.848v80h16v-80    C101.12,369.628,59.184,271.764,10.248,230.972z\"></path>			<path d=\"M205.12,165.124h26.384c10.304,0,20.48-2.704,29.408-7.816l48.208-27.544v-28.64h-16c-13.232,0-24-10.768-24-24    s10.768-24,24-24h10.424l29.576-19.72V5.124h-16v19.72l-18.424,12.28h-5.576c-22.056,0-40,17.944-40,40c0,22.056,17.944,40,40,40    v3.36l-40.16,22.936c-6.512,3.736-13.936,5.704-21.456,5.704h-32.576c-19.832-8.472-32.744-27.28-33.632-48.752    c22.576-3.896,39.824-23.568,39.824-47.248v-48h-16v48c0,17.648-14.352,32-32,32s-32-14.352-32-32v-48h-16v48    c0,0.352,0.048,0.696,0.056,1.048L3.984,69.204l2.264,15.84L112.2,69.908c5.936,15.832,19.984,27.696,37.08,30.52    c0.872,26.632,16.08,50.24,39.832,61.896v12.552l-24.976,6.248h-13.128L8.696,109.972l-7.16,14.312l145.696,72.84h18.872    l39.016-9.752V165.124z\"></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									<h6>\n							Lymphatic Massage Services						\n					</h6>\n									<p>\n						At Royal Health Medical Center, we offer advanced lymphatic massage treatments designed					</p>\n												<a href=\"https://mrarif.me/royalhealth/lymphatic-massage-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m456 208.87-197-139a5.23 5.23 0 0 0 -6 0l-197 139a5.26 5.26 0 0 0 -2.22 4.29v224.67a5.24 5.24 0 1 0 10.47 0v-222l191.75-135.25 191.77 135.29v222a5.24 5.24 0 1 0 10.47 0v-224.71a5.26 5.26 0 0 0 -2.24-4.29z\"></path><path d=\"m272.34 357.5a25 25 0 0 0 8.7-19v-6.3a25 25 0 1 0 -50.08 0v6.3a25 25 0 0 0 8.7 19 32.79 32.79 0 0 0 -16.43 28.4v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a22.3 22.3 0 1 1 44.6 0v51.93a5.24 5.24 0 1 0 10.47 0v-51.93a32.79 32.79 0 0 0 -16.43-28.4zm-30.91-19v-6.3a14.57 14.57 0 1 1 29.14 0v6.3a14.57 14.57 0 1 1 -29.14 0z\"></path><path d=\"m184.11 317.2a35.09 35.09 0 0 0 15.35-29v-9.5a35.08 35.08 0 0 0 -70.16 0v9.5a35.09 35.09 0 0 0 15.35 29 46.78 46.78 0 0 0 -27 42.35v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 0 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.78 46.78 0 0 0 -27.02-42.35zm-44.34-29v-9.5a24.61 24.61 0 0 1 49.22 0v9.5a24.61 24.61 0 0 1 -49.22 0z\"></path><path d=\"m377.06 323.28h.41a5.23 5.23 0 0 0 5.23-5.23v-39.35a35.09 35.09 0 0 0 -70.18 0v39.35a5.24 5.24 0 0 0 5.24 5.23h.42a46.66 46.66 0 0 0 -17.3 36.27v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a36.27 36.27 0 1 1 72.54 0v78.28a5.24 5.24 0 1 0 10.47 0v-78.28a46.66 46.66 0 0 0 -17.3-36.27zm-54.06-10.47v-34.11a24.62 24.62 0 0 1 49.24 0v34.11z\"></path><path d=\"m271.77 125.89h-31.54a5.24 5.24 0 0 0 -5.23 5.24v26.7h-26.7a5.24 5.24 0 0 0 -5.24 5.23v31.54a5.24 5.24 0 0 0 5.24 5.23h26.7v26.7a5.24 5.24 0 0 0 5.23 5.24h31.54a5.24 5.24 0 0 0 5.23-5.24v-26.7h26.7a5.24 5.24 0 0 0 5.24-5.23v-31.54a5.24 5.24 0 0 0 -5.24-5.23h-26.7v-26.7a5.24 5.24 0 0 0 -5.23-5.24zm26.7 42.41v21.06h-26.7a5.25 5.25 0 0 0 -5.24 5.24v26.7h-21.06v-26.7a5.25 5.25 0 0 0 -5.24-5.24h-26.7v-21.06h26.7a5.25 5.25 0 0 0 5.24-5.24v-26.7h21.06v26.7a5.25 5.25 0 0 0 5.24 5.24z\"></path></svg>				\n									<h6>\n							Family Medicine						\n					</h6>\n									<p>\n						At our Family Medicine Clinic, we provide comprehensive, compassionate care for patients of all ages.					</p>\n												<a href=\"https://mrarif.me/royalhealth/family-medicine/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 173.397 173.397\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_353378360\"><g><path id=\"_353325792\" d=\"m17.4778 127.758v8.6547c0 4.7696 3.8817 8.6514 8.6547 8.6514l121.136-.0001c4.7697 0 8.6512-3.8817 8.6512-8.6511l.0002-8.6549h-138.442zm129.791 20.6482h-121.136c-6.6148 0-11.9972-5.3822-11.9972-11.9933l.0003-10.3259c0-.9227.7483-1.6711 1.6709-1.6711l141.784-.0001c.9227 0 1.6709.7486 1.6709 1.6712l.0002 10.3257c0 6.6112-5.3789 11.9936-11.9934 11.9935z\"></path><path id=\"_353325936\" d=\"m42.3979 163.241c-.0035 0-.0037.0001-.0072.0001l-9.953-.0141c-.9577-.0035-1.7793-.4246-2.3086-1.1837-1.3785-1.974-.181-5.5249.0697-6.2177.1568-.4249.2263-.8321.2263-1.3195l.0002-7.7706c0-.9226.7483-1.671 1.6708-1.671.9227-.0001 1.6711.7486 1.6711 1.6711l.0001 7.7704c0 .8843-.1358 1.6712-.4282 2.4685-.4279 1.1696-.5676 2.3395-.5118 2.9104l9.1911.0139c.0419-.6371-.1638-1.9565-.5886-3.1297-.1391-.3935-.1288-.8217.0314-1.2081l3.9341-9.4661c.3517-.853 1.3298-1.2567 2.1827-.9016.853.3515 1.2568 1.33.9017 2.1828l-3.6935 8.8915c.4418 1.4343 1.065 4.1987-.063 5.8002-.5323.7588-1.3577 1.1733-2.3253 1.1732z\"></path><path id=\"_353325672\" d=\"m131.003 163.241c-.9679 0-1.7932-.4143-2.3258-1.1732-1.1278-1.6016-.5048-4.3658-.0627-5.8001l-3.6971-8.8917c-.3517-.8528.0521-1.8311.9016-2.1827.853-.3552 1.8312.0488 2.1863.9018l3.9341 9.4658c.1603.3864.1704.8148.0277 1.2082-.4209 1.1731-.6302 2.4927-.5848 3.1298l9.1877-.014c.0592-.5709-.0804-1.7407-.5086-2.9104-.2923-.7974-.4317-1.5841-.4317-2.4684l.0004-7.7706c0-.9226.7481-1.671 1.6707-1.671.9264-.0001 1.6712.7486 1.6712 1.6711l.0001 7.7704c0 .4874.0694.8949.226 1.3196.2546.6927 1.4484 4.2438.0732 6.2177-.5326.759-1.3508 1.1803-2.3082 1.1837l-9.9566.014s-.0037.0001-.0035 0z\"></path><path id=\"_353325816\" d=\"m52.2501 95.9904c-.9224 0-1.6711-.7485-1.6711-1.6711l.0003-31.7156c0-.9228.7482-1.6712 1.6708-1.6712.9227-.0001 1.6711.7486 1.6711 1.6712v31.7155c0 .9225-.7486 1.6712-1.6711 1.6712zm-30.3822 31.7678c-.9227 0-1.6712-.7485-1.6712-1.671v-66.2376c0-.9225.7485-1.6708 1.671-1.6708.923-.0001 1.6712.7484 1.6712 1.671l.0003 66.2374c0 .9224-.7488 1.671-1.6713 1.671z\"></path><path id=\"_353324808\" d=\"m37.0572 43.3234c-.9223 0-1.6711-.7484-1.6711-1.6709l.0003-7.0674c0-.9225.7482-1.6709 1.6707-1.6709.9229-.0001 1.6712.7485 1.6712 1.671l.0002 7.0672c0 .9226-.7487 1.6711-1.6713 1.671z\"></path><path id=\"_353325456\" d=\"m43.1322 50.9234c.1916 0 .3829.0105.5745.0383 2.1934.2854 3.847 2.1725 3.847 4.3867v4.2402c0 1.2291.9991 2.2282 2.228 2.2282 1.2327-.0001 2.2317-.9991 2.2317-2.2281l.0002-13.7655c0-1.229-.9994-2.2281-2.2319-2.2281l-25.4491-.0001c-1.2286 0-2.2281.9993-2.2281 2.2282v11.0117c0 1.2288.9992 2.2281 2.2281 2.2281 1.229 0 2.2316-.9992 2.2316-2.2281l.0001-1.4866c0-2.2142 1.6536-4.0975 3.8469-4.3866 2.1932-.2889 4.2786 1.1037 4.8496 3.2412.2196.8183.9573 1.3857 1.7963 1.3857.8426-.0002 1.5806-.5674 1.8-1.3857.5223-1.9497 2.3012-3.2794 4.2751-3.2795zm6.6497 14.2354c-3.0706 0-5.5704-2.4995-5.5704-5.5701l.0002-4.2404c0-.5501-.3936-1.0026-.9402-1.0757-.5465-.0732-1.0444.2646-1.1872.7937-.6056 2.2767-2.6737 3.8644-5.0272 3.8644-2.3499 0-4.4179-1.5875-5.0236-3.8644-.1426-.5293-.6406-.8634-1.1871-.7937-.5465.073-.94.5257-.94 1.0758v1.4865c0 3.0742-2.4997 5.5703-5.5738 5.5703-3.0706-.0002-5.5703-2.4961-5.5703-5.5703l.0002-11.0117c0-3.0741 2.4995-5.5703 5.5701-5.5703l25.4493-.0001c3.074 0 5.5735 2.4963 5.5735 5.5704l.0001 13.7654c0 3.0706-2.4997 5.5703-5.5736 5.5702z\"></path><path id=\"_353325120\" d=\"m55.6967 122.094c-.3235 0-.6546-.094-.9435-.2958-9.0583-6.2214-11.1684-13.95-11.3389-19.3358-.188-5.807 1.7685-10.1205 1.852-10.3015.2962-.6441.9679-1.0306 1.6712-.9643.3378.0311 8.3275.8321 14.4095 7.2482.6374.6719.6058 1.7268-.0627 2.3639-.6684.6337-1.7267.6058-2.3638-.0626-3.8884-4.1082-8.8185-5.5494-11.071-6.0159-1.2707 3.7425-3.9548 15.5549 8.7975 24.3142.7592.522.9539 1.5631.4318 2.3256-.3269.4697-.8495.7241-1.3821.724z\"></path><path id=\"_353325192\" d=\"m56.9049 127.232c-7.0462 0-12.8744-1.8242-17.3794-5.4482-7.6589-6.1552-8.5713-15.2103-8.606-15.5933-.0661-.7034.3202-1.3717.9643-1.6676.2507-.1186 6.263-2.8303 13.6854-1.5004.909.1635 1.511 1.0304 1.3473 1.939-.1598.9086-1.0304 1.5145-1.9391 1.3508-4.6091-.8287-8.6235.1707-10.5243.8042.5119 2.4542 2.1863 8.0804 7.1995 12.091 4.9611 3.9722 11.9168 5.4241 20.6726 4.3239.916-.115 1.7512.5362 1.8661 1.4518.1152.9154-.5326 1.7511-1.4482 1.866-2.0297.2541-3.9758.3829-5.8382.3828z\"></path><path id=\"_353324976\" d=\"m66.9416 93.0764c-4.6616 5.6015-12.9822 17.7064-10.5382 24.9582 1.0726 3.1819 4.2542 5.2917 9.452 6.2736.3797.0729.7276.1079 1.0688.1079.3726-.0001.7207-.0348 1.1001-.1079 5.2014-.982 8.3798-3.095 9.452-6.2736 2.4476-7.2657-5.873-19.3601-10.5347-24.9582zm.0247 34.6818c-.0035 0-.049 0-.0525 0-.5464-.0035-1.0967-.0556-1.6816-.1671-6.4716-1.2221-10.5103-4.0802-11.9969-8.4911-3.8537-11.4331 11.795-28.9619 12.4635-29.6999.3169-.3516.7693-.5536 1.2428-.5536.47-.0001.9226.202 1.2394.5536.6687.738 16.3174 18.2669 12.4634 29.6999-1.4862 4.4109-5.525 7.2691-11.9969 8.4911-.5846.1113-1.135.1637-1.6812.1671z\"></path><path id=\"_353325528\" d=\"m78.1834 122.094c-.5327 0-1.0552-.2541-1.3789-.724-.5254-.7625-.3308-1.8035.4282-2.3256 6.3501-4.3622 9.6783-9.9743 9.8941-16.6865.1082-3.3594-.6127-6.1412-1.107-7.6277-2.2522.4699-7.1752 1.9113-11.0605 6.0159-.6334.6683-1.692.6963-2.3639.0626-.6684-.6373-.6963-1.6919-.0626-2.3639 6.0822-6.4163 14.0753-7.217 14.4096-7.2482.707-.0629 1.3751.3202 1.671.9643.0837.1809 2.0401 4.4945 1.8556 10.3015-.174 5.3858-2.2838 13.1145-11.3424 19.3358-.2888.1985-.6198.2959-.9432.2958z\"></path><path id=\"_353325264\" d=\"m76.9751 127.232c-1.8623 0-3.8088-.1287-5.8383-.3828-.9154-.1149-1.5632-.9504-1.4483-1.866.1149-.9158.9504-1.5667 1.866-1.4518 8.756 1.1 15.7116-.3516 20.6726-4.3239 5.0101-4.0072 6.6844-9.6261 7.1996-12.0875-1.911-.6302-5.9429-1.6293-10.5243-.8077-.9083.1636-1.7756-.4421-1.9392-1.3508-.1633-.9087.4386-1.7754 1.3473-1.939 7.4258-1.3299 13.4348 1.382 13.6855 1.5004.6441.2958 1.0304.9643.9643 1.6676-.0347.3829-.9469 9.4382-8.6026 15.5933-4.5083 3.624-10.3362 5.4483-17.3826 5.4482z\"></path><path id=\"_353324928\" d=\"m138.645 96.1365c-.9223 0-1.6713-.7485-1.6713-1.671l.0001-23.3325c0-2.329-1.1489-4.5258-3.0741-5.873-.5706-.4004-1.1244-.7626-1.6641-1.1176-2.5936-1.699-5.0446-3.3038-5.72-7.0046-.1668-.9088.4352-1.779 1.3438-1.9427.9087-.1671 1.779.4352 1.9427 1.3404.4039 2.1967 1.6675 3.1124 4.2648 4.8113.5605.3689 1.1384.7451 1.751 1.1733 2.8165 1.9739 4.498 5.1942 4.498 8.613l.0003 23.3323c0 .9226-.7487 1.6712-1.6712 1.6711zm-42.1389 10.2109c-.9228 0-1.6713-.7484-1.6713-1.6709l.0001-33.5435c0-3.4188 1.6815-6.639 4.5014-8.6129.6093-.4284 1.1871-.8042 1.7476-1.1733 2.5973-1.6991 3.8609-2.6145 4.2648-4.8113.1639-.9052 1.034-1.5074 1.9426-1.3404.909.1637 1.5109 1.0341 1.3438 1.9427-.6753 3.7006-3.1263 5.3057-5.72 7.0046-.5357.355-1.0932.7172-1.6641 1.1176-1.925 1.3471-3.0741 3.544-3.0741 5.8731l.0003 33.5433c0 .9225-.7488 1.6712-1.6711 1.671z\"></path><path id=\"_353324880\" d=\"m138.645 80.7834h-42.1389c-.9228 0-1.6713-.7484-1.6713-1.6709.0001-.9226.7485-1.6711 1.6711-1.6711l42.1391-.0001c.9228 0 1.6709.7486 1.6709 1.6712.0003.9225-.7484 1.671-1.6709 1.6709z\"></path><path id=\"_353325024\" d=\"m128.159 58.5094h-21.1672c-.9223 0-1.6711-.7484-1.6711-1.6711l.0003-8.7626c0-.9227.7482-1.6711 1.6707-1.6711.9229 0 1.6712.7485 1.6712 1.6712l.0002 7.0914h17.8247v-7.0915c0-.9227.7483-1.6711 1.671-1.6711h.0002c.9224 0 1.6709.7485 1.6709 1.6712v8.7624c0 .9228-.7486 1.6713-1.6709 1.6712z\"></path><path id=\"_353375768\" d=\"m128.514 40.9318h.0035zm-21.609 5.4728h21.3411v-5.4728h-21.3411zm21.609 3.342h-21.8734c-1.6989 0-3.0779-1.382-3.0779-3.0774l.0003-6.002c0-1.6991 1.3783-3.0775 3.0772-3.0775l21.8738-.0002c1.6954 0 3.074 1.3788 3.074 3.0777l.0001 6.002c0 1.6953-1.3788 3.0776-3.0741 3.0774z\"></path><path id=\"_353383136\" d=\"m123.087 40.9318c-.9228 0-1.6714-.7484-1.6714-1.671l.0002-10.9874c0-2.1167-1.7235-3.84-3.8402-3.84-2.1166-.0001-3.8401 1.7233-3.8401 3.8401l.0002 10.9873c0 .9225-.7486 1.6711-1.6712 1.6711-.9223-.0001-1.6711-.7485-1.6711-1.6711l.0003-10.9874c0-3.9619 3.2235-7.1821 7.1819-7.1821 3.9585-.0002 7.1821 3.2202 7.1821 7.1822v10.9873c0 .9225-.7485 1.6711-1.6707 1.671z\"></path><path id=\"_353372432\" d=\"m149.012 111.949c-.9223 0-1.6711-.7484-1.6711-1.6711 0-.9259.7485-1.671 1.671-1.671 1.257-.0001 2.2803-1.0236 2.2803-2.2838 0-1.2569-1.0235-2.2803-2.2803-2.2803h-37.679c-1.2568 0-2.2806 1.0235-2.2806 2.2803 0 1.2601 1.0235 2.2838 2.2803 2.2838l3.9553-.0001c.9223 0 1.6706.7452 1.6706 1.6711.0002.9226-.7484 1.6712-1.671 1.6712l-3.9546-.0001c-3.102 0-5.6228-2.5239-5.6228-5.6259.0001-3.0985 2.5206-5.6225 5.6225-5.6225h37.6794c3.102 0 5.6259 2.524 5.6259 5.6225.0003 3.1019-2.5241 5.626-5.6259 5.6259z\"></path><path id=\"_353367248\" d=\"m115.288 127.758c-5.2816 0-9.5778-4.296-9.5778-9.5773.0001-5.2779 4.296-9.5739 9.5774-9.5739l33.7245-.0001c.9228 0 1.671.7452 1.671 1.6711.0003.9226-.7485 1.6712-1.6711 1.6712l-33.724-.0001c-3.44 0-6.2356 2.7956-6.2356 6.2318 0 3.4397 2.7955 6.2352 6.2352 6.2352.9227-.0001 1.671.7485 1.671 1.6711.0002.9224-.7484 1.671-1.6706 1.671z\"></path><path id=\"_353394320\" d=\"m149.012 127.758c-.9223 0-1.6711-.7485-1.6711-1.671 0-.9227.7485-1.6711 1.671-1.6711 1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2839-2.2803-2.2839l-31.5833-.0001c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711l31.5835-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0983-2.5241 5.6224-5.6259 5.6224z\"></path><path id=\"_353385752\" d=\"m149.012 119.852c-.9223 0-1.6711-.7483-1.6711-1.6709s.7485-1.6711 1.671-1.6711c1.257-.0001 2.2803-1.0235 2.2803-2.2803 0-1.257-1.0235-2.2803-2.2803-2.2803-.9222-.0001-1.671-.7485-1.671-1.6712 0-.9259.7485-1.671 1.671-1.671 3.1021-.0001 5.6225 2.5205 5.6225 5.6225.0003 3.1018-2.5206 5.6224-5.6224 5.6223z\"></path><path id=\"_353380856\" d=\"m149.012 104.043c-.9223 0-1.6711-.7486-1.6711-1.6711 0-.9227.7485-1.6711 1.671-1.6711 1.257 0 2.2803-1.0235 2.2803-2.2803 0-1.2604-1.0235-2.2838-2.2803-2.2838l-37.679-.0001c-1.2568 0-2.2806 1.0236-2.2806 2.2839 0 1.2567 1.0235 2.2803 2.2803 2.2803h3.9553c.9223 0 1.6706.7485 1.6706 1.6711.0002.9224-.7484 1.6711-1.671 1.6711h-3.9546c-3.102 0-5.6228-2.524-5.6228-5.6225.0001-3.1021 2.5206-5.626 5.6225-5.626l37.6794-.0001c3.102 0 5.6259 2.5242 5.6259 5.6261.0003 3.0985-2.5241 5.6225-5.6259 5.6225z\"></path></g><path id=\"_353378576\" d=\"m38.36 10.7843c10.5734 11.2837 9.9332 18.9784 5.8819 22.7901-1.9004 1.7879-4.5517 2.682-7.1818 2.682s-5.2814-.8941-7.1819-2.682c-7.1019-6.6819 1.1039-17.7185 5.9648-22.885.6966-.7404 1.8809-.6899 2.517.0949zm3.5972 20.3618c2.7312-2.5697 2.8353-8.0979-4.8971-16.8392-7.7324 8.7413-7.6283 14.2695-4.8971 16.8392 1.2527 1.1786 3.0645 1.7681 4.8971 1.7681s3.6444-.5895 4.8971-1.7681z\" fill-rule=\"nonzero\"></path></g></g></svg>				\n									<h6>\n							Wellness &amp; Beauty Services						\n					</h6>\n									<p>\n						We believe feeling your best goes hand in hand with looking your best. Our Wellness					</p>\n												<a href=\"https://mrarif.me/royalhealth/wellness-beauty-services/\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"></path></svg>			\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/royalhealth/services/\">\n									View All Services\n					</a>\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n															<img width=\"700\" height=\"700\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg 700w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-150x150.jpg 150w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n					<h6>Yermina Dumas Nico</h6>				\n									<p>Phlebotomist</p>								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN													<img width=\"700\" height=\"700\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871.jpg 700w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Untitled-5871-150x150.jpg 150w\" sizes=\"(max-width: 700px) 100vw, 700px\" />																<h6>Yermina Dumas Nico</h6>		<p>Phlebotomist</p>					\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Naidelmi Gonzalez Ferrer</h6>				\n									Office Manager								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Ana Iris Carmona Valdes</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Roman Martínez Faife</h6>				\n									Medical Assistant								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Irma Maria Valdes Sepulveda</h6>				\n									President								\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />															\n					<h6>Rebeca Barrabeitg Pozo</h6>				\n									APRN								\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>			\n				<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>			\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Team-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Naidelmi Gonzalez Ferrer</h6>		Office Manager													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Ana-Iris-Carmona-Valdes-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Ana Iris Carmona Valdes</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Roman-Martinez-Faife-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Roman Martínez Faife</h6>		Medical Assistant													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Irma-Maria-Valdes-Sepulveda-1-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Irma Maria Valdes Sepulveda</h6>		President													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg\" alt=\"\" srcset=\"https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo.jpg 1000w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-300x300.jpg 300w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-150x150.jpg 150w, https://mrarif.me/royalhealth/wp-content/uploads/2026/02/Rebeca-Barrabeitg-Pozo-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h6>Rebeca Barrabeitg Pozo</h6>		APRN			<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>\n							<h2>Contact Us</h2>							\n				<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=25.779384,-80.250645&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=3383%20NW%207th%20ST%20Suite%20305%20and%20306%20Miami%20FL%2033125\" target=\"_blank\" >\n							Address						</a>\n					</h6>\n									<p>\n						3383 NW 7th ST Suite 305 &amp; 306 Miami FL 33125					</p>\n				<a href=\"tel:7862387785\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:7862387785\" target=\"_blank\" >\n							Phone						</a>\n					</h6>\n									<p>\n						(786) 238-7785					</p>\n				<a href=\"fax:7862387743\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Fax\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>				</a>\n									<h6>\n						<a href=\"fax:7862387743\" target=\"_blank\" >\n							Fax						</a>\n					</h6>\n									<p>\n						(786) 238-7743					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 18:55:17', '2026-02-02 18:55:17', '', 14, 'https://mrarif.me/royalhealth/?p=608', 0, 'revision', '', 0);

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

--
-- Table structure for table `wpr_termmeta`
--

CREATE TABLE `wpr_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 `wpr_terms`
--

CREATE TABLE `wpr_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 `wpr_terms`
--

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

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

--
-- Table structure for table `wpr_term_relationships`
--

CREATE TABLE `wpr_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 `wpr_term_relationships`
--

INSERT INTO `wpr_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(50, 2, 0),
(51, 2, 0),
(58, 2, 0),
(53, 2, 0),
(54, 2, 0),
(55, 2, 0),
(56, 2, 0),
(59, 2, 0),
(52, 2, 0),
(86, 3, 0),
(276, 4, 0),
(307, 5, 0),
(311, 5, 0),
(498, 5, 0);

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

--
-- Table structure for table `wpr_term_taxonomy`
--

CREATE TABLE `wpr_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 `wpr_term_taxonomy`
--

INSERT INTO `wpr_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 9),
(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 `wpr_usermeta`
--

CREATE TABLE `wpr_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 `wpr_usermeta`
--

INSERT INTO `wpr_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'web-admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpr_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpr_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '0'),
(16, 1, 'session_tokens', 'a:3:{s:64:\"60485ece32bcbecdb7c5d8c9f933865f35b2fc0de45fee9de9da076122b18eff\";a:4:{s:10:\"expiration\";i:1771138818;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1769929218;}s:64:\"bbabefa99d77aecc30ec54e498976269a3e820ddb30b3fd3fa245b0e7391a4fc\";a:4:{s:10:\"expiration\";i:1770229258;s:2:\"ip\";s:13:\"45.120.99.249\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1770056458;}s:64:\"5befc8b907028fe59260bcf8e5482afd37e8b317983f5ff061f9a0e1072831f9\";a:4:{s:10:\"expiration\";i:1770397578;s:2:\"ip\";s:13:\"45.120.99.249\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1770224778;}}'),
(17, 1, 'wpr_dashboard_quick_press_last_post_id', '5'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"45.120.99.0\";}'),
(19, 1, 'elementor_introduction', 'a:3:{s:27:\"e-editor-one-notice-pointer\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}'),
(20, 1, 'wpr_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"J6u1yr3At4InKM9XSEY2yFPWvhTsnHQD\";s:11:\"auth_secret\";s:32:\"txrtYbtKLHAbTGvszJsPVYGXf4KJwW1X\";s:12:\"access_token\";s:300:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9yb3lhbGhlYWx0aC8iLCJjbGllbnRfaWQiOiJKNnUxeXIzQXQ0SW5LTTlYU0VZMnlGUFd2aFRzbkhRRCIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzY5OTI5MjQ3LCJleHAiOjMxNzMxNDM3MTY0N30.Opj2HSfDjcfwJW1r6Q1Wj1A4yiEyEKgVmWYWQfmgcUk\";s:19:\"access_token_secret\";s:32:\"BYFmVhSFWnDuMrJpKs1K67CtHXLRsubB\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";}s:19:\"data_share_opted_in\";b:1;}'),
(21, 1, 'astra-sites-on-active', 'notice-dismissed'),
(22, 1, 'wpr_user-settings', 'editor=tinymce&libraryContent=browse'),
(23, 1, 'wpr_user-settings-time', '1770011799'),
(24, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(25, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}');

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

--
-- Table structure for table `wpr_users`
--

CREATE TABLE `wpr_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 `wpr_users`
--

INSERT INTO `wpr_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$r8u3J4jkorqUdQuUDw2AeOX2wWDqkSR2qYo/ZesSUjGwAxze8Zgey', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/royalhealth', '2026-02-01 06:27:35', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

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

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

--
-- Indexes for table `wpr_e_notes`
--
ALTER TABLE `wpr_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 `wpr_e_notes_users_relations`
--
ALTER TABLE `wpr_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 `wpr_e_submissions`
--
ALTER TABLE `wpr_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 `wpr_e_submissions_actions_log`
--
ALTER TABLE `wpr_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 `wpr_e_submissions_values`
--
ALTER TABLE `wpr_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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